import Test.Tasty ( TestTree, defaultMain, testGroup ) import Network.DNS.RBL.Tests ( ipv4pattern_tests, site_tests ) tests :: TestTree tests = testGroup "All Tests" [ site_tests, ipv4pattern_tests ] main :: IO () main = defaultMain tests