I would like to be able to take a file with ads, for example:
test_1 = assert $ 1 == 1 test_2 = assert $ 2 == 1
and generate a basic launch function like
main = runTests [test_1, test2]
The goal is to get something like Netsetest Python.
Can I do this with a Haskell template? I can not find a lot of documentation on it (there are a lot of broken links in the Wiki).
haskell
luispedro
source share