packages feed

fitspec 0.4.4 → 0.4.5

raw patch · 3 files changed

+8/−6 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Test.FitSpec: class Mutable a where mutiers = map (: []) . mutants mutants = concat . mutiers
+ Test.FitSpec: class Mutable a
- Test.FitSpec.Mutable: class Mutable a where mutiers = map (: []) . mutants mutants = concat . mutiers
+ Test.FitSpec.Mutable: class Mutable a

Files

README.md view
@@ -141,7 +141,8 @@ documentation on Hackage.  FitSpec has been subject to a paper, see the-[FitSpec paper on Haskell Symposium 2016](https://matela.com.br/paper/fitspec.pdf)+[FitSpec paper on Haskell Symposium 2016](https://matela.com.br/paper/fitspec.pdf).+FitSpec is also subject to a chapter in a [PhD Thesis (2017)].  [Listable]:    https://hackage.haskell.org/package/leancheck/docs/Test-LeanCheck.html#t:Listable [Mutable]:     https://hackage.haskell.org/package/fitspec/docs/Test-FitSpec.html#t:Mutable@@ -155,6 +156,7 @@ [TH]:      https://wiki.haskell.org/Template_Haskell [Cabal]:   https://www.haskell.org/cabal [Haskell]: https://www.haskell.org/+[PhD Thesis (2017)]: https://matela.com.br/paper/rudy-phd-thesis-2017.pdf  [build-status]: https://travis-ci.org/rudymatela/fitspec.svg?branch=master [build-log]:    https://travis-ci.org/rudymatela/fitspec
bench/pretty.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE CPP #-} import Test.FitSpec-import Text.PrettyPrint+import Text.PrettyPrint as P  #if __GLASGOW_HASKELL__ < 710 -- pretty <= 1.1.1.1 (bundled with GHC <= 7.8)  does not provide this instance@@ -46,7 +46,7 @@  main = do   as <- getArgs-  let run ps = reportWith as ((<>),($$),nest) (uncurry3 ps)+  let run ps = reportWith as ((P.<>),($$),nest) (uncurry3 ps)   case concat (extra as) of     "qs"    -> run propertiesQS     ""      -> run properties
fitspec.cabal view
@@ -1,5 +1,5 @@ name:                fitspec-version:             0.4.4+version:             0.4.5 synopsis:            refining property sets for testing Haskell programs description:   FitSpec provides automated assistance in the task of refining test properties@@ -22,7 +22,7 @@ maintainer:          Rudy Matela <rudy@matela.com.br> category:            Testing build-type:          Simple-cabal-version:       >=1.18+cabal-version:       1.18  extra-doc-files: README.md                , CREDITS.md@@ -38,7 +38,7 @@ source-repository this   type:            git   location:        https://github.com/rudymatela/fitspec-  tag:             v0.4.4+  tag:             v0.4.5   library