]> gitweb.michael.orlitzky.com - dead/htsn.git/blobdiff - test/ShellTests.hs
Fix the "no feed hosts" check and add a shelltest for the behavior.
[dead/htsn.git] / test / ShellTests.hs
diff --git a/test/ShellTests.hs b/test/ShellTests.hs
new file mode 100644 (file)
index 0000000..65a10cc
--- /dev/null
@@ -0,0 +1,10 @@
+module Main
+where
+
+import System.Cmd ( system )
+import System.Exit ( exitWith )
+
+main :: IO ()
+main = do
+  result <- system "shelltest test/shell/*.test"
+  exitWith result