Skip to content

Commit 28943af

Browse files
committed
Simplify tests, covering the absolute basic case.
1 parent 0070305 commit 28943af

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

test/basic.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@test true

test/init.jl

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ using ParallelTestRunner
22

33
pushfirst!(ARGS, "--verbose")
44

5+
runtests(ARGS)
6+
7+
# custom tests, and initialization code
58
init_code = quote
69
using Test
710
should_be_defined() = true
@@ -10,9 +13,6 @@ init_code = quote
1013
return :(true)
1114
end
1215
end
13-
14-
runtests(ARGS; init_code)
15-
1616
custom_tests = Dict(
1717
"custom" => quote
1818
@test should_be_defined()

0 commit comments

Comments
 (0)