]> gitweb.michael.orlitzky.com - list-remote-forwards.git/blob - test/TestSuite.hs
Fix slashes in cabal description.
[list-remote-forwards.git] / test / TestSuite.hs
1 import Test.Tasty ( TestTree, defaultMain, testGroup )
2
3 import Report ( report_tests )
4
5 tests :: TestTree
6 tests = testGroup "All tests" [ report_tests ]
7
8 main :: IO ()
9 main = defaultMain tests