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

18 lines
391 B
Haskell
Raw Normal View History

2023-07-22 03:45:29 +00:00
module Main where
2023-07-22 09:46:23 +00:00
2023-07-22 03:45:29 +00:00
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 09:46:23 +00:00
import qualified ConfigTest
2023-07-22 15:10:27 +00:00
import qualified InstallTest
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
2023-07-22 09:46:23 +00:00
, ConfigTest.configTests
2023-07-22 15:10:27 +00:00
, InstallTest.installTests
2023-07-22 09:14:49 +00:00
]