quox/tests/Tests.idr

22 lines
287 B
Idris
Raw Normal View History

module Tests
import Options
import TAP
2022-05-12 01:41:58 -04:00
import Tests.Unicode
import Tests.Lexer
2022-05-06 15:58:32 -04:00
import Tests.Parser
2022-05-25 10:10:19 -04:00
import Tests.Reduce
2022-04-27 14:06:39 -04:00
import Tests.Equal
import System
2022-04-27 14:06:39 -04:00
2022-05-02 11:13:13 -04:00
allTests = [
2022-05-12 01:41:58 -04:00
Unicode.tests,
2022-05-02 11:13:13 -04:00
Lexer.tests,
2022-05-06 15:58:32 -04:00
Parser.tests,
2022-05-25 10:10:19 -04:00
Reduce.tests,
Equal.tests
2022-05-02 11:13:13 -04:00
]
2022-04-27 14:06:39 -04:00
2022-05-24 06:09:17 -04:00
main = TAP.main !getTestOpts allTests