remove src directories

This commit is contained in:
rhiannon morris 2022-05-06 22:01:44 +02:00
parent 79211cff84
commit 804f1e3638
36 changed files with 0 additions and 3 deletions

23
tests/Tests.idr Normal file
View 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