holy-project-0.1.0.0: scaffold/test/Test.hs
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
]