File: TestSuite.hs

package info (click to toggle)
haskell-blaze-html 0.9.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 860 kB
  • sloc: haskell: 9,063; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- | Main module to run all tests.
--
module Main where

import Test.Framework (defaultMain, testGroup)

import qualified Text.Blaze.Html.Tests
import qualified Util.Tests

main :: IO ()
main = defaultMain
    [ testGroup "Text.Blaze.Html.Tests" Text.Blaze.Html.Tests.tests
    , testGroup "Util.Tests"             Util.Tests.tests
    ]