summaryrefslogtreecommitdiff
path: root/source/Test/All.hs
blob: 7fb5bd345987320fcf2f9e909fe34540b63ba81b (plain)
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]