import Test.Tasty ( TestTree, defaultMain, testGroup ) import EmailAddress ( email_address_tests ) tests :: TestTree tests = testGroup "All Tests" [ email_address_tests ] main :: IO () main = defaultMain tests