yesod-test.cabal 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. name: yesod-test
  2. version: 1.5.1.1
  3. license: MIT
  4. license-file: LICENSE
  5. author: Nubis <nubis@woobiz.com.ar>
  6. maintainer: Michael Snoyman, Greg Weber, Nubis <nubis@woobiz.com.ar>
  7. synopsis: integration testing for WAI/Yesod Applications
  8. category: Web, Yesod, Testing
  9. stability: Experimental
  10. cabal-version: >= 1.8
  11. build-type: Simple
  12. homepage: http://www.yesodweb.com
  13. description: API docs and the README are available at <http://www.stackage.org/package/yesod-test>
  14. extra-source-files: README.md, LICENSE, test/main.hs, ChangeLog.md
  15. library
  16. build-depends: base >= 4.3 && < 5
  17. , attoparsec >= 0.10
  18. , persistent >= 1.0
  19. , transformers >= 0.2.2
  20. , wai >= 3.0
  21. , wai-extra
  22. , network >= 2.2
  23. , http-types >= 0.7
  24. , HUnit >= 1.2
  25. , hspec-core == 2.*
  26. , bytestring >= 0.9
  27. , case-insensitive >= 0.2
  28. , text
  29. , xml-conduit >= 1.0
  30. , xml-types >= 0.3
  31. , containers
  32. , html-conduit >= 0.1
  33. , blaze-html >= 0.5
  34. , blaze-markup >= 0.5.1
  35. , monad-control
  36. , time
  37. , blaze-builder
  38. , cookie
  39. , yesod-core >= 1.4.14
  40. exposed-modules: Yesod.Test
  41. Yesod.Test.CssQuery
  42. Yesod.Test.TransversingCSS
  43. ghc-options: -Wall
  44. test-suite test
  45. type: exitcode-stdio-1.0
  46. main-is: main.hs
  47. hs-source-dirs: test
  48. build-depends: base
  49. , yesod-test
  50. , hspec
  51. , HUnit
  52. , xml-conduit
  53. , bytestring
  54. , containers
  55. , html-conduit
  56. , yesod-core
  57. , yesod-form
  58. , text
  59. , wai
  60. , lifted-base
  61. , http-types
  62. source-repository head
  63. type: git
  64. location: git://github.com/yesodweb/yesod.git