packages feed

doctest-prop-0.2: doctest-prop.cabal

-- Initial doctest-prop.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                doctest-prop
version:             0.2
synopsis:            Allow QuickCheck-style property testing within doctest.
description:         

  This package allows you to write QuickCheck properties and HUnit
  assertions within doctest, using functions that keep silence when
  test succeeds and print out the test outputs otherwise.  
  .
  To enjoy behavior driven development in Haskell, first import
  @Test.DocTest.Prop@, and use @prop@, @propWith@ and @unit@ to write
  in-place tests. For more details, please refer to examples in the
  module @Test.DocTest.Prop@ .

license:             MIT
license-file:        LICENSE
author:              Takayuki Muranushi
maintainer:          muranushi@gmail.com
-- copyright:           
category:            Testing
build-type:          Simple
cabal-version:       >=1.8


library
  exposed-modules:     Test.DocTest.Prop
  hs-source-dirs:    ./src/
  build-depends:       base ==4.*
                     , HUnit
                     , QuickCheck

Test-Suite test
  Main-Is:           main.hs
  hs-source-dirs:    ./test/, .
  Type:              exitcode-stdio-1.0
  Build-Depends:     base == 4.*
                   , doctest >=0.8
                   , HUnit
                   , QuickCheck

source-repository head
  type:              git
  location:          git://github.com/nushio3/doctest-prop.git