File: TestSuite.hs

package info (click to toggle)
haskell-blaze-markup 0.6.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 124 kB
  • ctags: 1
  • sloc: haskell: 964; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
-- | Main module to run all tests.
--
module Main where

import Test.Framework (defaultMain, testGroup)

import qualified Text.Blaze.Tests

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