]> gitweb.michael.orlitzky.com - dead/harbl.git/blob - test/TestSuite.hs
Replace 'UserDomain' with 'Host' in the library.
[dead/harbl.git] / test / TestSuite.hs
1 import Test.Tasty ( TestTree, defaultMain, testGroup )
2 import Network.DNS.RBL.Site ( site_tests )
3 import Network.DNS.RBL.IPv4Pattern ( ipv4pattern_tests )
4
5 tests :: TestTree
6 tests = testGroup "All Tests" [ site_tests, ipv4pattern_tests ]
7
8 main :: IO ()
9 main = defaultMain tests