extrapolate-0.3.1: extrapolate.cabal
name: extrapolate
version: 0.3.1
synopsis: generalize counter-examples of test properties
description:
Extrapolate is a tool able to provide generalized counter-examples of test
properties where irrelevant sub-expressions are replaces with variables.
.
For the incorrect property @\\xs -> nub xs == (xs::[Int])@:
.
* @[0,0]@ is a counter-example;
.
* @x:x:_@ is a generalized counter-example.
homepage: https://github.com/rudymatela/extrapolate#readme
license: BSD3
license-file: LICENSE
author: Rudy Matela
maintainer: Rudy Matela <rudy@matela.com.br>
category: Testing
build-type: Simple
cabal-version: >=1.18
extra-doc-files: README.md
, TODO.md
tested-with: GHC==8.2, GHC==8.0, GHC==7.10, GHC==7.8
source-repository head
type: git
location: https://github.com/rudymatela/extrapolate
source-repository this
type: git
location: https://github.com/rudymatela/extrapolate
tag: v0.3.1
library
exposed-modules: Test.Extrapolate
, Test.Extrapolate.Core
, Test.Extrapolate.Basic
, Test.Extrapolate.Derive
, Test.Extrapolate.Exprs
, Test.Extrapolate.IO
, Test.Extrapolate.TypeBinding
, Test.Extrapolate.Utils
, Test.Extrapolate.New
other-extensions: TemplateHaskell, CPP
build-depends: base >= 4 && < 5
, leancheck >= 0.7
, template-haskell
, speculate >= 0.3.2
hs-source-dirs: src
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: test-extrapolate.hs
other-modules: Test
hs-source-dirs: tests
build-depends: base >= 4 && < 5, leancheck, speculate, extrapolate
default-language: Haskell2010
test-suite derive
type: exitcode-stdio-1.0
main-is: test-derive.hs
other-modules: Test
hs-source-dirs: tests
build-depends: base >= 4 && < 5, leancheck, speculate, extrapolate
default-language: Haskell2010
test-suite utils
type: exitcode-stdio-1.0
main-is: test-utils.hs
other-modules: Test
hs-source-dirs: tests
build-depends: base >= 4 && < 5, leancheck, speculate, extrapolate
default-language: Haskell2010
test-suite new
type: exitcode-stdio-1.0
main-is: test-new.hs
other-modules: Test
hs-source-dirs: tests
build-depends: base >= 4 && < 5, leancheck, speculate, extrapolate
default-language: Haskell2010
test-suite step-by-step
type: exitcode-stdio-1.0
main-is: test-step-by-step.hs
other-modules: Test
hs-source-dirs: tests
build-depends: base >= 4 && < 5, leancheck, speculate, extrapolate
default-language: Haskell2010