hakyll/tests/Main.hs
Jasper Van der Jeugt c9e3458083 Added .txt support, tests update.
- Pure text files are now supported.
- We now hide the Internal modules.
- Tests should be run through ghci.
- Added testing of page reading.
2010-03-26 14:10:10 +01:00

21 lines
473 B
Haskell

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 = defaultMain [ compressCssGroup
, fileGroup
, pageGroup
, regexGroup
, templateGroup
, utilGroup
]