cabal-version: 2.4 name: hspec-tables version: 0.0.1 synopsis: Table-driven (by-example) HSpec tests description: Table-driven (by-example) HSpec tests homepage: https://github.com/marcin-rzeznicki/hspec-tables bug-reports: https://github.com/marcin-rzeznicki/hspec-tables/issues license: MIT license-file: LICENSE author: Marcin Rzeźnicki maintainer: Marcin Rzeźnicki copyright: 2020 Marcin Rzeźnicki category: Testing build-type: Simple extra-doc-files: README.md CHANGELOG.md tested-with: GHC == 8.8.2 source-repository head type: git location: https://github.com/marcin-rzeznicki/hspec-tables.git common common-options build-depends: base ^>= 4.13.0.0, hspec-core ==2.7.* ghc-options: -Wall -Wno-type-defaults -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates -fdefer-typed-holes if impl(ghc >= 8.0) ghc-options: -Wredundant-constraints if impl(ghc >= 8.2) ghc-options: -fhide-source-paths if impl(ghc >= 8.4) ghc-options: -Wmissing-export-lists -Wpartial-fields if impl(ghc >= 8.8) ghc-options: -Wmissing-deriving-strategies default-language: Haskell2010 library import: common-options hs-source-dirs: src exposed-modules: Test.Hspec.Tables test-suite hspec-tables-test import: common-options type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs other-modules: ExampleSpecs build-depends: hspec-tables, hspec ==2.7.* ghc-options: -threaded -rtsopts -with-rtsopts=-N