]> gitweb.michael.orlitzky.com - dead/harbl.git/blobdiff - test/TestSuite.hs
Implement DnsblSite parsing and add a test suite for it.
[dead/harbl.git] / test / TestSuite.hs
index c7d96137a00724ba0bf4b1548a661129aa2353a3..cb79fd0fc2b7c0a06a658bdec0b07f8fc066ed05 100644 (file)
@@ -1,8 +1,9 @@
 import Test.Tasty ( TestTree, defaultMain, testGroup )
+import DnsblSite ( dnsbl_site_tests )
 import IPv4Pattern ( ipv4pattern_tests )
 
 tests :: TestTree
-tests = testGroup "All Tests" [ ipv4pattern_tests ]
+tests = testGroup "All Tests" [ dnsbl_site_tests, ipv4pattern_tests ]
 
 main :: IO ()
 main = defaultMain tests