Files
gyehoek-hs/test/Main.hs
T
msyds 0ba49ed85c
build / build (push) Successful in 1m8s
fix all haskell warnings (sigh)
2026-07-19 03:26:36 -06:00

18 lines
355 B
Haskell

module Main (main) where
import Test.Tasty (TestTree, testGroup)
import Test.Tasty.Silver.Interactive (defaultMain)
import qualified Gyehoek.Test.Golden
import qualified Gyehoek.Test.Sexp
main :: IO ()
main = defaultMain =<< root
root :: IO TestTree
root = testGroup "test" <$> sequenceA
[ Gyehoek.Test.Golden.root
, Gyehoek.Test.Sexp.root
]