]> gitweb.michael.orlitzky.com - email-validator.git/blob - test/TestSuite.hs
email-validator.cabal: bump to version 1.1.0
[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