1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
name: hspec-attoparsec
version: 0.1.0.2
synopsis: Utility functions for testing your attoparsec parsers with hspec
description: This package provides some helper functions for testing attoparsec parsers with hspec.
.
See the documentation in @Test.Hspec.Attoparsec@ for examples, or this package's own test suite.
homepage: http://github.com/alpmestan/hspec-attoparsec
Bug-reports: https://github.com/alpmestan/hspec-attoparsec/issues
license: BSD3
license-file: LICENSE
author: Alp Mestanogullari
maintainer: alpmestan@gmail.com
copyright: 2014-2015 Alp Mestanogullari
category: Testing, Parsing
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Test.Hspec.Attoparsec,
Test.Hspec.Attoparsec.Source
build-depends: base >=4 && <5,
attoparsec >= 0.10,
hspec-expectations >= 0.5,
bytestring >= 0.8,
text >= 1.0
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite spec
type:
exitcode-stdio-1.0
ghc-options:
-Wall
hs-source-dirs:
src, tests
main-is:
Spec.hs
build-depends:
base == 4.*
, text >= 1.0
, bytestring >= 0.8
, hspec
, hspec-expectations >= 0.5
, attoparsec >= 0.10
default-language:
Haskell2010
source-repository head
type: git
location: http://github.com/alpmestan/hspec-attoparsec.git
|