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 19:10:56 +01:00
|
|
|
import qualified Tests.Old
|
|
|
|
import qualified Tests.Readers.LaTeX
|
2008-08-09 18:51:08 +02:00
|
|
|
|
2011-01-04 01:00:01 +01:00
|
|
|
tests :: [Test]
|
2011-01-12 19:10:56 +01:00
|
|
|
tests = [ testGroup "Old" Tests.Old.tests
|
|
|
|
, testGroup "Readers" [ testGroup "LaTeX" Tests.Readers.LaTeX.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
|