packages feed

serial-test-generators-0.1.2: serial-test-generators.cabal

Name:                   serial-test-generators
Version:                0.1.2
Author:                 Scott <scottmurphy09@gmail.com>
Maintainer:             Scott <scottmurphy09@gmail.com>
License:                MIT
License-File:           LICENSE
Category:               Test
Synopsis:               Test your 'Aeson' 'Serialize' and 'Binary' instances for stability over time
Description:            
                        When I am programming haskell I write a lot of getter setter serialization tests
                        for aeson, binary, cereal
                        These libraries are often associated with state.
                        This library standardizes those tests

Cabal-Version:          >= 1.10
Build-Type:             Simple

Library
  Default-Language:     Haskell2010
  HS-Source-Dirs:       src
  GHC-Options:          -Wall
  Exposed-Modules:      Test.Serial
  Other-Modules:        
  Build-Depends:        base >= 4 && < 5
                      , aeson  >= 0.6.2.0
                      , binary >= 0.6.3.0
                      , cereal >= 0.3.5.0
                      , bytestring >= 0.9.0
                        

Test-Suite spec
  Type:                 exitcode-stdio-1.0
  Default-Language:     Haskell2010
  Hs-Source-Dirs:       src
                      , test
  Ghc-Options:          -Wall
  Main-Is:              Spec.hs
  Build-Depends:        base
                      , hspec
                      , QuickCheck 
                      , aeson
                      , binary
                      , cereal
                      , bytestring
                      , transformers >= 0.3.0
                      , system-fileio


Source-Repository head
  Type:                 git
  Location:             https://github.com/smurphy8/serial-test-generators.git