]> gitweb.michael.orlitzky.com - haeredes.git/blobdiff - test/TestSuite.hs
Truly add the test suite source files, which should have gone in a few commits ago.
[haeredes.git] / test / TestSuite.hs
diff --git a/test/TestSuite.hs b/test/TestSuite.hs
new file mode 100644 (file)
index 0000000..7c553d2
--- /dev/null
@@ -0,0 +1,18 @@
+module Main
+where
+
+import Data.Monoid (mempty)
+import Test.Framework (
+  Test,
+  defaultMainWithOpts )
+import Test.Framework.Runners.Options ( RunnerOptions )
+
+import DNS (dns_properties, dns_tests)
+
+main :: IO ()
+main = do
+  let empty_options = mempty :: RunnerOptions
+  defaultMainWithOpts tests empty_options
+
+tests :: [Test]
+tests = [ dns_properties, dns_tests ]