ghcup-hs/test/optparse-test/Main.hs

10 lines
203 B
Haskell
Raw Normal View History

2023-07-22 03:45:29 +00:00
module Main where
import Test.Tasty
2023-07-22 07:31:37 +00:00
import qualified SetTest
2023-07-22 08:07:49 +00:00
import qualified DebugInfoTest
2023-07-22 03:45:29 +00:00
main :: IO ()
2023-07-22 08:07:49 +00:00
main = defaultMain $ testGroup "ghcup"
[ SetTest.setTests
, DebugInfoTest.debugInfoTests
]