Skip to content

Commit

Permalink
Use SplittablesTesting in tests (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored Jun 28, 2020
1 parent 8b395c1 commit b1e952f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ julia = "1"
[extras]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
SplittablesTesting = "3bda5eb5-c32a-4f64-8618-df3be8968470"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Documenter", "OffsetArrays", "Test"]
test = ["Documenter", "OffsetArrays", "SplittablesTesting", "Test"]
5 changes: 3 additions & 2 deletions test/test_testing.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
module TestTesting

import SplittablesBase
import SplittablesTesting

SplittablesBase.Testing.test_ordered(Any[1:10, 1:11])
SplittablesTesting.test_ordered(Any[1:10, 1:11])
SplittablesTesting.test_unordered(Any[Set(1:10), Set(1:11)])

end # module

0 comments on commit b1e952f

Please sign in to comment.