]> gitweb.michael.orlitzky.com - haeredes.git/blob - test/TestSuite.hs
Bump the version and switch to tasty (from test-framework).
[haeredes.git] / test / TestSuite.hs
1 module Main
2 where
3
4 import Test.Tasty ( TestTree, defaultMain, testGroup )
5
6 import DNS ( dns_properties, dns_tests )
7
8 tests :: TestTree
9 tests = testGroup "All tests" [ dns_properties, dns_tests ]
10
11 main :: IO ()
12 main = defaultMain tests