Login
7 branches 0 tags
Ben (X13/Void) Added [λδ*] and [defund] to test bytecoded λ's 37f104c 3 years ago 494 Commits
nujel / tools / suite.nuj
#!/usr/bin/env nujel

[println "Entered SUITE.NUJ"]
[defun directory/read-relative [path]
       [map [directory/read path]
            [\ [α] [cat path "/" α]]]]
[for-each [directory/read-relative "tests/suite"] file/eval]
[println "Loaded all Tests"]

[if [ref repl/options :bytecoded]
    [exit [test-run-bytecode]]
    [exit [test-run]]]