packages feed

hspec-server 0.3.0 → 0.3.1

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Test/Hspec/Server/ServerType.hs view
@@ -62,10 +62,10 @@  instance ServerType Vagrant where   stSetup a = do-    os' <- detectOS a     (e,conf,_) <- readProcessWithExitCode "vagrant" ["ssh-config"] []     when (e /= ExitSuccess) $ do       error "vagrant setup error"+    os' <- detectOS (a {vConf = Just conf})     return $ a {vConf = Just conf,vOS = os'}   stOS = vOS   stName = vHostName
hspec-server.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                hspec-server-version:             0.3.0+version:             0.3.1 synopsis:            Test Framework for Server's status description:         Hspec-Server is test framework for checking server's status.                      It is inspired by the Ruby library ServerSpec.