2008-08-09 18:51:08 +02:00
|
|
|
{-# OPTIONS_GHC -Wall #-}
|
|
|
|
|
|
|
|
module Main where
|
2011-01-04 01:00:01 +01:00
|
|
|
|
2011-01-12 13:11:08 +01:00
|
|
|
import Test.Framework
|
2011-01-04 01:00:01 +01:00
|
|
|
|
2011-01-12 13:11:08 +01:00
|
|
|
import qualified Old
|
2011-01-12 14:16:35 +01:00
|
|
|
import qualified Latex.Reader
|
2008-08-09 18:51:08 +02:00
|
|
|
|
2011-01-04 01:00:01 +01:00
|
|
|
tests :: [Test]
|
2011-01-12 13:11:08 +01:00
|
|
|
tests = [ testGroup "Old" Old.tests
|
2011-01-12 14:16:35 +01:00
|
|
|
, testGroup "Latex" [ testGroup "Reader" Latex.Reader.tests
|
|
|
|
]
|
2011-01-04 01:00:01 +01:00
|
|
|
]
|
|
|
|
|
2008-08-09 18:51:08 +02:00
|
|
|
main :: IO ()
|
2011-01-04 01:00:01 +01:00
|
|
|
main = defaultMain tests
|