packages feed

hackport-0.5.5: cabal/cabal-testsuite/PackageTests/NewBuild/CustomSetup/RemotePackageWithCustomSetup/build-package-from-repo-with-custom-setup.test.hs

import Test.Cabal.Prelude

-- The one local package, pkg, has a dependency on remote-pkg-2.0, which has a
-- setup dependency on remote-setup-dep-3.0.
main = cabalTest $ do
  skipUnless =<< hasNewBuildCompatBootCabal
  withRepo "repo" $ do
    r1 <- recordMode DoNotRecord $ cabal' "new-build" ["pkg:my-exe"]
    -- remote-pkg's setup script should print out a message that it imported from
    -- remote-setup-dep:
    assertOutputContains "remote-pkg Setup.hs: remote-setup-dep-3.0" r1
    withPlan $ do
      r2 <- runPlanExe' "pkg" "my-exe" []
      -- pkg's executable should print a message that it imported from remote-pkg:
      assertOutputContains "pkg Main.hs: remote-pkg-2.0" r2