pandoc/tests/test-pandoc.hs
2011-01-22 12:37:19 -08:00

24 lines
577 B
Haskell

{-# OPTIONS_GHC -Wall #-}
module Main where
import Test.Framework
import qualified Tests.Old
import qualified Tests.Readers.LaTeX
import qualified Tests.Writers.ConTeXt
import qualified Tests.Writers.Native
tests :: [Test]
tests = [ testGroup "Old" Tests.Old.tests
, testGroup "Readers"
[ testGroup "LaTeX" Tests.Readers.LaTeX.tests
]
, testGroup "Writers"
[ testGroup "ConTeXt" Tests.Writers.ConTeXt.tests
, testGroup "Native" Tests.Writers.Native.tests
]
]
main :: IO ()
main = defaultMain tests