Improve online docs for `includes:` field
[cabal.git] / cabal-testsuite / PackageTests / Init / init-interactive-empty-folder.test.hs
blob87472bdc4164a0ba65da71a6a9bed69208374abb
1 import Test.Cabal.Prelude
2 import System.Directory
4 main = cabalTest $ do
5 tmpDir <- testCurrentDir <$> getTestEnv
6 liftIO $ createDirectory (tmpDir </> "empty")
7 withDirectory (tmpDir </> "empty") $ do
8 res <- cabalWithStdin "init"
9 ["-i"]
10 (replicate 20 '\n') -- Default all the way down.
11 assertOutputDoesNotContain "backups will be created" res