remove src directories
This commit is contained in:
parent
79211cff84
commit
804f1e3638
36 changed files with 0 additions and 3 deletions
23
tests/Tests.idr
Normal file
23
tests/Tests.idr
Normal file
|
@ -0,0 +1,23 @@
|
|||
module Tests
|
||||
|
||||
import Options
|
||||
import TAP
|
||||
import Tests.Lexer
|
||||
import Tests.Parser
|
||||
import Tests.Equal
|
||||
import System
|
||||
|
||||
|
||||
allTests = [
|
||||
Lexer.tests,
|
||||
Parser.tests,
|
||||
Equal.tests
|
||||
]
|
||||
|
||||
main = do
|
||||
opts <- getTestOpts
|
||||
go <- case opts.tapVersion of
|
||||
"13" => pure TAP.mainFlat
|
||||
"14" => pure TAP.main
|
||||
_ => do putStrLn "unrecognised TAP version; use 13 or 14"; exitFailure
|
||||
go allTests
|
Loading…
Add table
Add a link
Reference in a new issue