packages feed

fixie-0.0.0: fixie.cabal

name:
  fixie
version:
  0.0.0
synopsis:
  Opininated testing framework for mtl style (spies, stubs, and mocks)
description:
  Please see README.md
homepage:
  http://github.com/jxv/fixie#readme
license:
  BSD3
license-file:
  LICENSE
author:
  Joe Vargas
maintainer:
  joevargas92@gmail.com
copyright:
  2016 CJ Affiliate by Conversant, 2016 Joe Vargas
category:
  Test
build-type:
  Simple
extra-source-files:
  CHANGELOG.md
  LICENSE
  README.md
cabal-version:
   >=1.10

library
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall
  exposed-modules:
    Test.Fixie
    Test.Fixie.Internal
    Test.Fixie.TH
    Test.Fixie.TH.Internal
    Test.Fixie.TH.Internal.TypesQuasi
  build-depends:
      base >= 4.7 && < 5
    , containers
    , data-default-class
    , either
    , haskell-src-exts
    , haskell-src-meta
    , mtl
    , template-haskell >= 2.10 && < 2.12
    , text
    , th-orphans

source-repository head
  type:
    git
  location:
    https://github.com/jxv/fixie

test-suite fixie-test-suite
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  default-language: Haskell2010
  ghc-options: -Wall
  other-modules:
    Test.Test.FixieSpec
    Test.Test.Fixie.THSpec
  build-depends:
      base >= 4.7 && < 5
    , fixie
    , hspec
    , hspec-discover
    , mtl
    , template-haskell >= 2.10 && < 2.12
    , transformers