packages feed

test-framework-testing-feat 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+6/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

src/Test/Framework/Providers/Feat.hs view
@@ -32,7 +32,11 @@                     | PropertyFalsifiable String                     -- ^ The property was not true. The strings                      --   are the reason and the output.-                    deriving(Show, Eq)+                    deriving(Eq)+                    +instance Show PropertyStatus where+    show PropertyOK              = "Property OK"+    show (PropertyFalsifiable x) = "Property failed with " ++ x  propertySucceeded :: PropertyStatus -> Bool propertySucceeded s = case s of
test-framework-testing-feat.cabal view
@@ -2,7 +2,7 @@ -- further documentation, see http://haskell.org/cabal/users-guide/  name:                test-framework-testing-feat-version:             0.1.0.0+version:             0.1.0.1 synopsis:            A test framework provider for testing-feat description:         A test provider for testing-feat copied from test-framework-quickcheck2 by Max Bolingbroke homepage:            http://github.com/jfischoff/test-framework-testing-feat