File: Tests.hs

package info (click to toggle)
haskell-happstack-data 0.5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 184 kB
  • sloc: haskell: 1,475; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 438 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- |HUnit tests and QuickQuick properties for Happstack.Data.*
module Happstack.Data.Tests (allTests) where

import Happstack.Data.Tests.Xml001   (xml001)
import Happstack.Data.Tests.Xml002   (xml002)
import Happstack.Data.Tests.Xml003   (xml003)

import Test.HUnit as HU (Test(..),(~:))

-- |All of the tests for happstack-data should be listed here. 
allTests :: Test
allTests = 
    "happstack-data tests" ~: [xml001, xml002, xml003]