aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pandoc.hs
blob: 9f3d6530078c97bc5759927824665745a51ac19f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{-# OPTIONS_GHC -Wall #-}

module Main where

import Test.Framework

import qualified Tests.Old
import qualified Tests.Readers.LaTeX
import qualified Tests.Shared

tests :: [Test]
tests = [ testGroup "Old" Tests.Old.tests
        , testGroup "Readers"
          [ testGroup "LaTeX" Tests.Readers.LaTeX.tests
          ]
        , testGroup "Shared" Tests.Shared.tests
        ]

main :: IO ()
main = defaultMain tests