packages feed

shelly 1.6.2.4 → 1.6.2.5

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

shelly.cabal view
@@ -1,6 +1,6 @@ Name:       shelly -Version:     1.6.2.4+Version:     1.6.2.5 Synopsis:    shell-like (systems) programming in Haskell  Description: Shelly provides convenient systems programming in Haskell,
test/src/WhichSpec.hs view
@@ -5,11 +5,11 @@ whichSpec :: Spec whichSpec = describe "which" $ do     it "gives full path to cabal" $ do-      Just _ <- shelly $ which "cabal"+      Just _ <- shelly $ which "find"       assert True      it "recognizes cabal as a path executable" $ do-      res <- shelly $ test_px "cabal"+      res <- shelly $ test_px "find"       True @?= res       it "cannot find missing exe" $ do