]> gitweb.michael.orlitzky.com - dead/harbl.git/blobdiff - test/TestSuite.hs
Finish moving all of the DNS name components under Network.DNS.RBL.Domain.
[dead/harbl.git] / test / TestSuite.hs
index c7d96137a00724ba0bf4b1548a661129aa2353a3..5008785748db6f151b3d2545ec98f8f6d53de1e7 100644 (file)
@@ -1,8 +1,8 @@
 import Test.Tasty ( TestTree, defaultMain, testGroup )
-import IPv4Pattern ( ipv4pattern_tests )
+import Network.DNS.RBL.Tests ( ipv4pattern_tests, site_tests )
 
 tests :: TestTree
-tests = testGroup "All Tests" [ ipv4pattern_tests ]
+tests = testGroup "All Tests" [ site_tests, ipv4pattern_tests ]
 
 main :: IO ()
 main = defaultMain tests