]> gitweb.michael.orlitzky.com - dead/harbl.git/blobdiff - test/TestSuite.hs
Add the Reversible class.
[dead/harbl.git] / test / TestSuite.hs
index 83a4dec70792083a4e366d0c4d01cefd67680cc0..5008785748db6f151b3d2545ec98f8f6d53de1e7 100644 (file)
@@ -1,8 +1,8 @@
 import Test.Tasty ( TestTree, defaultMain, testGroup )
-import IPv4Pattern ( v4octet_tests )
+import Network.DNS.RBL.Tests ( ipv4pattern_tests, site_tests )
 
 tests :: TestTree
-tests = testGroup "All Tests" [ v4octet_tests ]
+tests = testGroup "All Tests" [ site_tests, ipv4pattern_tests ]
 
 main :: IO ()
 main = defaultMain tests