holy-project/test/Test.hs
2013-11-15 23:34:15 +01:00

15 lines
292 B
Haskell

module Main where
import Test.Tasty (defaultMain,testGroup,TestTree)
import HolyProject.Swallow.Test
import HolyProject.Coconut.Test
main :: IO ()
main = defaultMain tests
tests :: TestTree
tests = testGroup "All Tests"
[ swallowSuite
, coconutSuite
]