module Main where import Test.Tasty ( TestTree, defaultMain, testGroup ) import DNS ( dns_properties, dns_tests ) tests :: TestTree tests = testGroup "All tests" [ dns_properties, dns_tests ] main :: IO () main = defaultMain tests