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