ghcup-hs/test/optparse-test/Main.hs
2023-07-22 16:07:49 +08:00

10 lines
203 B
Haskell

module Main where
import Test.Tasty
import qualified SetTest
import qualified DebugInfoTest
main :: IO ()
main = defaultMain $ testGroup "ghcup"
[ SetTest.setTests
, DebugInfoTest.debugInfoTests
]