magic-haskell (1.0.8-8) testsrc/Tests.hs

Summary

 testsrc/Tests.hs |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

    
download this patch

Patch contents

--- magic-haskell-1.0.8.orig/testsrc/Tests.hs
+++ magic-haskell-1.0.8/testsrc/Tests.hs
@@ -0,0 +1,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
+                 ]
+
+
+