module Tests.Main where import qualified Tests.LambdaTest (tests) import qualified Tests.OpsTest (tests) import Control.Monad tests :: [IO Bool] tests = Tests.LambdaTest.tests ++ Tests.OpsTest.tests main :: IO () main = liftM and ( sequence tests ) >>= print