aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pandoc.hs
blob: cf7a7e5e4bde6bcaa1ba77aeecd1cccc5e73af29 (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 Old
import qualified Latex.Reader

tests :: [Test]
tests = [ testGroup "Old" Old.tests
        , testGroup "Latex" [ testGroup "Reader" Latex.Reader.tests
                            ]
        ]

main :: IO ()
main = defaultMain tests