1 2 3 4 5 6 7 8 9 10 11 12 13 14
module Test.All where import Base import Test.Golden import Test.Unit import Test.Tasty runTests :: IO () runTests = defaultMain =<< tests tests :: IO TestTree tests = testGroup "all tests" <$> sequence [goldenTests, return unitTests]