]> gitweb.michael.orlitzky.com - dead/halcyon.git/blob - test/TestSuite.hs
Rewrite CommandLine to use cmdargs and integrate the command-line and RC file options.
[dead/halcyon.git] / test / TestSuite.hs
1 import Test.Framework (
2 Test,
3 defaultMain,
4 )
5
6 import StringUtils (string_utils_tests)
7 import Twitter.Status(status_tests)
8 import Html(html_tests)
9
10 tests :: [Test]
11 tests = [ html_tests,
12 status_tests,
13 string_utils_tests ]
14
15 main :: IO ()
16 main = defaultMain tests