source: sizechecking/branches/macs/tests/Main.hs @ 21

Last change on this file since 21 was 21, checked in by gobi, 11 years ago

operators

File size: 269 bytes
Line 
1module Tests.Main where
2
3import qualified Tests.LambdaTest (tests)
4import qualified Tests.OpsTest (tests)
5import Control.Monad
6
7tests :: [IO Bool]
8tests = Tests.LambdaTest.tests
9     ++ Tests.OpsTest.tests
10
11main :: IO ()
12main = liftM and ( sequence tests ) >>= print
13
Note: See TracBrowser for help on using the repository browser.