name: chuchu version: 0.0.0.0 cabal-version: >= 1.8 build-type: Simple license: OtherLicense license-file: LICENSE copyright: 2012 Marco Túlio Pimenta Gontijo author: Marco Túlio Pimenta Gontijo maintainer: Marco Túlio Pimenta Gontijo stability: experimental homepage: http://github.com/marcotmarcot/chuchu bug-reports: http://github.com/marcotmarcot/chuchu/issues synopsis: Behaviour Driven Development for Haskell description: Chuchu is a system similar to Ruby's Cucumber for Behaviour Driven Development. It works with a language similar to Cucumber's Gherkin, which is parsed using package abacate. category: Test tested-with: GHC ==7.4.2 extra-source-files: tests/data/environment.feature, tests/data/calculator.feature, tests/data/prefix.feature library exposed-modules: Test.Chuchu, Test.Chuchu.Types, Test.Chuchu.Parser other-modules: Test.Chuchu.Parsec, Test.Chuchu.Email build-depends: base >= 4 && < 5, text >= 0.11 && < 0.12, transformers >= 0.3 && < 0.4, parsec >= 3.1 && < 3.2, cmdargs >= 0.9 && < 0.10, abacate >= 0.0 && < 0.1 extensions: DeriveDataTypeable, TypeSynonymInstances, FlexibleInstances, GADTs ghc-options: -Wall Test-Suite environment type: exitcode-stdio-1.0 main-is: environment.hs hs-source-dirs: tests build-depends: base >= 4 && < 5, unix >= 2.5 && < 2.6, chuchu, HUnit >= 1.2 && < 1.3 extensions: OverloadedStrings ghc-options: -Wall Test-Suite calculator type: exitcode-stdio-1.0 main-is: calculator.hs hs-source-dirs: tests build-depends: base >= 4 && < 5, transformers >= 0.3 && < 0.4, chuchu, HUnit >= 1.2 && < 1.3 extensions: OverloadedStrings ghc-options: -Wall Test-Suite prefix type: exitcode-stdio-1.0 main-is: prefix.hs hs-source-dirs: tests build-depends: base >= 4 && < 5, transformers >= 0.3 && < 0.4, chuchu, HUnit >= 1.2 && < 1.3 extensions: OverloadedStrings ghc-options: -Wall