]> gitweb.michael.orlitzky.com - dead/harbl.git/blobdiff - test/TestSuite.hs
Rename everything under the Network.DNS.RBL hierarchy.
[dead/harbl.git] / test / TestSuite.hs
index 83a4dec70792083a4e366d0c4d01cefd67680cc0..c6298e4b55b1e35297ada143dd4f93a5222c3491 100644 (file)
@@ -1,8 +1,9 @@
 import Test.Tasty ( TestTree, defaultMain, testGroup )
-import IPv4Pattern ( v4octet_tests )
+import Network.DNS.RBL.DnsblSite ( dnsbl_site_tests )
+import Network.DNS.RBL.IPv4Pattern ( ipv4pattern_tests )
 
 tests :: TestTree
-tests = testGroup "All Tests" [ v4octet_tests ]
+tests = testGroup "All Tests" [ dnsbl_site_tests, ipv4pattern_tests ]
 
 main :: IO ()
 main = defaultMain tests