]> gitweb.michael.orlitzky.com - email-validator.git/blob - test/TestSuite.hs
Allow any 0.x version of tasty and bump to version 0.0.4 again.
[email-validator.git] / test / TestSuite.hs
1 import Test.Tasty ( TestTree, defaultMain, testGroup )
2
3 import EmailAddress ( email_address_tests )
4
5 tests :: TestTree
6 tests = testGroup "All Tests" [ email_address_tests ]
7
8 main :: IO ()
9 main = defaultMain tests