holy-project/scaffold/test/Test.hs
Yann Esposito (Yogsototh) 910e8b0189 added all files
2013-11-19 23:59:52 +01:00

15 lines
298 B
Haskell

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