module Main where import Test.Tasty ( TestTree, defaultMain, testGroup ) import StringUtils ( string_utils_tests ) import Twitter.Status ( status_tests ) import Html ( html_tests ) tests :: TestTree tests = testGroup "All Tests" [ html_tests, status_tests, string_utils_tests ] main :: IO () main = defaultMain tests