2008-08-09 16:51:08 +00: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 16:51:08 +00: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
|
2011-01-14 00:30:36 -08:00
|
|
|
, testGroup "Readers"
|
|
|
|
[ testGroup "LaTeX" Tests.Readers.LaTeX.tests
|
|
|
|
]
|
2011-01-04 01:00:01 +01:00
|
|
|
]
|
|
|
|
|
2008-08-09 16:51:08 +00:00
|
|
|
main :: IO ()
|
2011-01-04 01:00:01 +01:00
|
|
|
main = defaultMain tests
|