pandoc/tests/test-pandoc.hs
2011-01-12 19:12:54 +01:00

17 lines
350 B
Haskell

{-# 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