packages feed

hspec-server 0.2.0 → 0.2.1

raw patch · 2 files changed

+6/−6 lines, 2 filesdep −hspec-contribPVP ok

version bump matches the API change (PVP)

Dependencies removed: hspec-contrib

API changes (from Hackage documentation)

Files

hspec-server.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                hspec-server-version:             0.2.0+version:             0.2.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.@@ -49,7 +49,7 @@      build-depends: base                  , hspec-                 , hspec-contrib+                 -- , hspec-contrib                  , hspec-server                  , transformers     Default-Language:   Haskell2010
test/test.hs view
@@ -1,6 +1,6 @@ import Test.Hspec hiding (it,describe) import Test.Hspec.Server-import Test.Hspec.Contrib.Retry+-- import Test.Hspec.Contrib.Retry import Control.Monad.IO.Class  main :: IO ()@@ -20,6 +20,6 @@         service "atd" `includes` Running       it "command test" $ do         command "ls" [] [] `includes` Exit 0-      it "retry test" $ do-        retryWith 10 $ --currently does not support Retry. I want to use retryWith !!!-          command "ls" [] [] `includes` Exit 0+      -- it "retry test" $ do+      --   retryWith 10 $ --currently does not support Retry. I want to use retryWith !!!+      --     command "ls" [] [] `includes` Exit 0