holy-project/test/Test.hs
2013-12-03 16:54:56 +01:00

15 lines
304 B
Haskell

module Main where
import Test.Tasty (defaultMain,testGroup,TestTree)
import HolyProject.StringUtils.Test
import HolyProject.GithubAPI.Test
main :: IO ()
main = defaultMain tests
tests :: TestTree
tests = testGroup "All Tests"
[ stringUtilsSuite
, githubAPISuite
]