File: Tests.hs

package info (click to toggle)
ldap-haskell 0.6.0
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 152 kB
  • ctags: 6
  • sloc: haskell: 154; makefile: 122
file content (18 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{- arch-tag: Tests main file
Copyright (C) 2005 John Goerzen <jgoerzen@complete.org>

This code is under a 3-clause BSD license; see COPYING for details.
-}

module Tests(tests) where
import Test.HUnit
import qualified Inittest

test1 = TestCase ("x" @=? "x")

tests = TestList [TestLabel "test1" test1,
                  TestLabel "init" Inittest.tests
                 ]