packages feed

hspec-attoparsec-0.1.0.2: hspec-attoparsec.cabal

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