]> gitweb.michael.orlitzky.com - dead/halcyon.git/blob - test/TestSuite.hs
Bump all dependencies and switch from test-framework to tasty for tests.
[dead/halcyon.git] / test / TestSuite.hs
1 module Main
2 where
3
4 import Test.Tasty ( TestTree, defaultMain, testGroup )
5
6 import StringUtils ( string_utils_tests )
7 import Twitter.Status ( status_tests )
8 import Html ( html_tests )
9
10 tests :: TestTree
11 tests =
12 testGroup "All Tests" [
13 html_tests,
14 status_tests,
15 string_utils_tests ]
16
17 main :: IO ()
18 main = defaultMain tests