packages feed

assertions-0.1.0.3: assertions.cabal

name:                assertions
version:             0.1.0.3
synopsis:            A simple testing framework.
license:             MIT
license-file:        LICENSE
data-files:         
  test/fixtures/Green.hs
  test/fixtures/Mixed.hs
  test/fixtures/Red.hs
author:              vi
maintainer:          me@vikramverma.com
category:            Testing
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src 
  exposed-modules:     Test.Assert
  build-depends:       base >=4.6 && <4.7, containers, ansi-terminal
  default-language:    Haskell2010

test-suite assert-tests
  type:                exitcode-stdio-1.0
  main-is:             Assert.hs
  hs-source-dirs:      test
  build-depends:       base, assertions, interpolate, process
  default-language:    Haskell2010
  other-modules:       Paths_assertions