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

13 lines
277 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 09:14:49 +00:00
import qualified OtherCommandTest
import qualified ChangeLogTest
2023-07-22 03:45:29 +00:00
main :: IO ()
2023-07-22 08:07:49 +00:00
main = defaultMain $ testGroup "ghcup"
[ SetTest.setTests
2023-07-22 09:14:49 +00:00
, OtherCommandTest.otherCommandTests
, ChangeLogTest.changeLogTests
]