]> gitweb.michael.orlitzky.com - list-remote-forwards.git/blob - test/TestSuite.hs
fc58bd855ca5dc2c1bd91a41b085283a399c53e2
[list-remote-forwards.git] / test / TestSuite.hs
1 import Test.Tasty ( TestTree, defaultMain, testGroup )
2
3 import DNS ( dns_properties, dns_tests )
4 import Report ( report_tests )
5
6 tests :: TestTree
7 tests = testGroup "All tests" [ dns_properties,
8 dns_tests,
9 report_tests ]
10
11 main :: IO ()
12 main = defaultMain tests