43 lines
1.6 KiB
Plaintext
43 lines
1.6 KiB
Plaintext
name: yesod-test
|
|
version: 0.1
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Nubis <nubis@woobiz.com.ar>
|
|
maintainer: Nubis <nubis@woobiz.com.ar>
|
|
synopsis: integration testing for WAI/Yesod Applications
|
|
category: Web, Yesod, Testing
|
|
stability: Experimental
|
|
cabal-version: >= 1.6
|
|
build-type: Simple
|
|
homepage: http://www.yesodweb.com
|
|
description: Behaviour Oriented integration Testing for Yesod Applications
|
|
extra-source-files: README.md, LICENSE
|
|
|
|
flag ghc7
|
|
|
|
library
|
|
if flag(ghc7)
|
|
build-depends: base >= 4.3 && < 5
|
|
cpp-options: -DGHC7
|
|
else
|
|
build-depends: base >= 4 && < 4.3
|
|
build-depends: hxt >= 9.1.6
|
|
, parsec >= 2.1 && < 4
|
|
, persistent >= 0.8 && < 0.9
|
|
, transformers >= 0.2.2 && < 0.3
|
|
, wai >= 1.1 && < 1.2
|
|
, wai-test >= 1.0 && < 2.0
|
|
, network >= 2.2 && < 2.4
|
|
, http-types >= 0.6 && < 0.7
|
|
, HUnit >= 1.2 && < 1.3
|
|
, hspec >= 0.9 && < 1.0
|
|
, bytestring >= 0.9
|
|
, text
|
|
exposed-modules: Yesod.Test
|
|
other-modules: Yesod.Test.TransversingCSS
|
|
ghc-options: -Wall
|
|
|
|
source-repository head
|
|
type: git
|
|
location: git://github.com/yesodweb/yesod.git
|