source:
sizechecking/branches/macs/tests/Main.hs
@
21
Last change on this file since 21 was 21, checked in by gobi, 11 years ago | |
---|---|
File size: 269 bytes |
Line | |
---|---|
1 | module Tests.Main where |
2 | |
3 | import qualified Tests.LambdaTest (tests) |
4 | import qualified Tests.OpsTest (tests) |
5 | import Control.Monad |
6 | |
7 | tests :: [IO Bool] |
8 | tests = Tests.LambdaTest.tests |
9 | ++ Tests.OpsTest.tests |
10 | |
11 | main :: IO () |
12 | main = liftM and ( sequence tests ) >>= print |
13 |
Note: See TracBrowser
for help on using the repository browser.