pandoc/tests/test-pandoc.hs

18 lines
350 B
Haskell
Raw Normal View History

{-# OPTIONS_GHC -Wall #-}
module Main where
import Test.Framework
2011-01-12 19:10:56 +01:00
import qualified Tests.Old
import qualified Tests.Readers.LaTeX
tests :: [Test]
2011-01-12 19:10:56 +01:00
tests = [ testGroup "Old" Tests.Old.tests
, testGroup "Readers" [ testGroup "LaTeX" Tests.Readers.LaTeX.tests
]
]
main :: IO ()
main = defaultMain tests