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