File tree 6 files changed +15
-14
lines changed
6 files changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,11 @@ These are the basis of parallel algorithms that can be derived from
12
12
` reduce ` . Custom containers can support many parallel algorithms by
13
13
simply defining these functions.
14
14
15
- SplittablesBase.jl also defines an experimental simple test utility
16
- functions ` SplittablesBase.Testing.test_ordered(examples) ` and
17
- ` SplittablesBase.Testing.test_unordered(examples) ` where some
18
- automatable tests are run against each example container in
19
- ` examples ` . This utility function is planned to be moved out to a
20
- separate package.
15
+ [ SplittablesTesting.jl] ( https://github.com/JuliaFolds/SplittablesTesting.jl )
16
+ provides simple test utility functions
17
+ ` SplittablesTesting.test_ordered(examples) ` and
18
+ ` SplittablesTesting.test_unordered(examples) ` that run some
19
+ automatable tests with each example container in ` examples ` .
21
20
22
21
See more in the
23
22
[ documentation] ( https://juliafolds.github.io/SplittablesBase.jl/dev ) .
Original file line number Diff line number Diff line change 1
1
[deps ]
2
2
Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
+ SplittablesBase = " 171d559e-b47b-412a-8079-5efa626c420e"
4
+ SplittablesTesting = " 3bda5eb5-c32a-4f64-8618-df3be8968470"
Original file line number Diff line number Diff line change 1
- using Documenter, SplittablesBase
1
+ using Documenter, SplittablesBase, SplittablesTesting
2
2
3
3
makedocs (;
4
- modules= [SplittablesBase],
4
+ modules= [SplittablesBase, SplittablesTesting ],
5
5
format= Documenter. HTML (),
6
6
pages= [
7
7
" Home" => " index.md" ,
Original file line number Diff line number Diff line change 4
4
SplittablesBase
5
5
SplittablesBase.halve
6
6
SplittablesBase.amount
7
- SplittablesBase.Testing .test_ordered
8
- SplittablesBase.Testing .test_unordered
7
+ SplittablesTesting .test_ordered
8
+ SplittablesTesting .test_unordered
9
9
```
Original file line number Diff line number Diff line change 1
- SplittablesBase.Testing .test_ordered(examples)
2
- SplittablesBase.Testing .test_unordered(examples)
1
+ SplittablesTesting .test_ordered(examples)
2
+ SplittablesTesting .test_unordered(examples)
3
3
4
4
Run interface tests on each test case in ` examples ` .
5
5
Original file line number Diff line number Diff line change @@ -118,9 +118,9 @@ function countmap(xs)
118
118
end
119
119
120
120
"""
121
- test_unordered(examples)
121
+ SplittablesTesting. test_unordered(examples)
122
122
123
- See [`test_ordered`](@ref).
123
+ See [`test_ordered`](@ref Main.SplittablesTesting.test_ordered ).
124
124
"""
125
125
function test_unordered (examples)
126
126
@testset " $(getlabel (x)) " for x in enumerate (examples)
You can’t perform that action at this time.
0 commit comments