Name:                bdd
Version:             0.2.0.0
Synopsis:            Behavior-Driven Development DSL
Homepage:            http://github.com/humane-software/haskell-bdd
License:             MIT
License-File:        LICENSE
Author:              Irek Jozwiak, Pavlo Kerestey
Maintainer:          irek@humane.software
Category:            Testing
Stability:           provisional
Build-Type:          Simple
Cabal-Version:       >=1.10
Description:         
  .
  An internal domain-specific language for testing programs using Behavior-Driven Development (BDD) process. It helps arranging your tests in "given" \/ "when" \/ "then" parts.
  .
  For a more detailed description please refer to <https://github.com/humane-software/haskell-bdd/>

extra-source-files:
  changelog.md

Library
  exposed-modules:     Test.Bdd, Test.Bdd.Internal
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base ==4.*
                      ,HUnit
                      ,mtl
                      ,transformers
  
Test-Suite system-tests
  type:       exitcode-stdio-1.0
  other-modules:       BddTest
  main-is:    SystemTests.hs
  hs-source-dirs: tests/system, src
  build-depends: base
                ,directory
                ,HUnit
                ,mtl
                ,process
                ,test-framework
                ,test-framework-hunit