packages feed

HUnit-approx-1.1.1: HUnit-approx.cabal

name:           HUnit-approx
version:        1.1.1
cabal-version:  >= 1.10
synopsis:       Approximate equality for floating point numbers with HUnit
homepage:       https://github.com/goldfirere/HUnit-approx
category:       Testing
author:         Richard Eisenberg <rae@cs.brynmawr.edu>
maintainer:     Richard Eisenberg <rae@cs.brynmawr.edu>
bug-reports:    https://github.com/goldfirere/HUnit-approx/issues
stability:      intended to be stable
extra-source-files: README.md, CHANGES.md
license:        BSD3
license-file:   LICENSE
build-type:     Simple
tested-with:    GHC == 7.0.4, GHC == 7.2.2, GHC == 7.4.2, GHC == 7.6.3,
                GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.1
description:
    This package exports combinators useful in comparing floating-point numbers
    in HUnit tests, by using approximate equality.

source-repository this
  type:     git
  location: https://github.com/goldfirere/HUnit-approx.git
  tag:      v1.1.1

library
  build-depends:      
      base == 4.*
    , HUnit >= 1.2
    , call-stack >= 0.1
  exposed-modules:    Test.HUnit.Approx
  default-language:   Haskell2010

test-suite sanity-check
  type:               exitcode-stdio-1.0
  ghc-options:        -Wall
  default-language:   Haskell2010
  main-is:            Tests/Main.hs

  build-depends:
      base == 4.*
    , HUnit >= 1.2
    , HUnit-approx
    , call-stack >= 0.1