]> gitweb.michael.orlitzky.com - dead/harbl.git/blob - test/TestSuite.hs
c7d96137a00724ba0bf4b1548a661129aa2353a3
[dead/harbl.git] / test / TestSuite.hs
1 import Test.Tasty ( TestTree, defaultMain, testGroup )
2 import IPv4Pattern ( ipv4pattern_tests )
3
4 tests :: TestTree
5 tests = testGroup "All Tests" [ ipv4pattern_tests ]
6
7 main :: IO ()
8 main = defaultMain tests