blob: b679981770745ae293db2d720cf68acece78a2e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{-# OPTIONS_GHC -Wall #-}
module Main where
import Test.Framework
import qualified Tests.Old
import qualified Tests.Readers.LaTeX
tests :: [Test]
tests = [ testGroup "Old" Tests.Old.tests
, testGroup "Readers" [ testGroup "LaTeX" Tests.Readers.LaTeX.tests
]
]
main :: IO ()
main = defaultMain tests
|