summaryrefslogtreecommitdiff
path: root/tests/Main.hs
blob: adcb613986bb0db4022a9072a59fea0ba85520ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module Main where

import Test.Framework (defaultMain, testGroup)
import Test.Framework.Providers.HUnit
import Test.Framework.Providers.QuickCheck2

import CompressCss
import File
import Page
import Regex
import Template
import Util

-- | Run all tests.
main :: IO ()
main = defaultMain [ compressCssGroup
                   , fileGroup
                   , pageGroup
                   , regexGroup
                   , templateGroup
                   , utilGroup
                   ]