packages feed

quickcheck-webdriver 0.1.0.6 → 0.1.0.7

raw patch · 2 files changed

+6/−4 lines, 2 filesdep ~basedep ~webdriverPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, webdriver

API changes (from Hackage documentation)

Files

Test/QuickCheck/Monadic/WebDriver.hs view
@@ -31,6 +31,7 @@ import Test.QuickCheck.Property import Test.QuickCheck.Monadic as QCM import Test.WebDriver+import Test.WebDriver.Session             ( WDSession ) import Control.Monad.IO.Class  data Context = ExistingSession WDSession @@ -42,7 +43,8 @@     wdProperty = ioProperty . runSesh     runSesh action = case context of         ExistingSession sesh -> runWD sesh action-        SessionParams caps setup -> runSession defaultSession caps $ setup >> action+        SessionParams caps setup -> runSession conf $ setup >> action+            where conf = defaultConfig { wdCapabilities=caps }             runIO :: IO a -> PropertyM WD a
quickcheck-webdriver.cabal view
@@ -2,7 +2,7 @@ --  documentation, see http://haskell.org/cabal/users-guide/  name:                quickcheck-webdriver-version:             0.1.0.6+version:             0.1.0.7 synopsis:            Utilities for using WebDriver with QuickCheck -- description:          license:             MIT@@ -19,9 +19,9 @@   exposed-modules:   Test.QuickCheck.Monadic.WebDriver   -- other-modules:          -- other-extensions:    -  build-depends:       base >=4.6 && <4.7+  build-depends:       base >=4.6 && <4.8                      , QuickCheck-                     , webdriver+                     , webdriver    >= 0.6                      , transformers   -- hs-source-dirs:         default-language:    Haskell2010