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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.39.1.
--
-- see: https://github.com/sol/hpack
name: hspec-api
version: 2.11.16
synopsis: A Testing Framework for Haskell
description: This package provides a stable API that can be used to extend Hspec's functionality.
category: Testing
stability: stable
homepage: https://hspec.github.io/
bug-reports: https://github.com/hspec/hspec/issues
author: Simon Hengel <sol@typeful.net>
maintainer: Simon Hengel <sol@typeful.net>
copyright: (c) 2022-2025 Simon Hengel
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
version.yaml
source-repository head
type: git
location: https://github.com/hspec/hspec
subdir: hspec-api
library
exposed-modules:
Test.Hspec.Api.Format.V1
Test.Hspec.Api.Format.V2
Test.Hspec.Api.Formatters.V1
Test.Hspec.Api.Formatters.V2
Test.Hspec.Api.Formatters.V3
other-modules:
Test.Hspec.Api.Format.V1.Internal
Test.Hspec.Api.Format.V2.Config
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base ==4.*
, hspec-core ==2.11.16
, transformers
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Test.Hspec.Api.Format.V1Spec
Test.Hspec.Api.Format.V2Spec
Test.Hspec.Api.Formatters.V1Spec
Test.Hspec.Api.Formatters.V2Spec
Test.Hspec.Api.Formatters.V3Spec
Paths_hspec_api
hs-source-dirs:
test
ghc-options: -Wall
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
base ==4.*
, hspec ==2.*
, hspec-api
, hspec-core ==2.11.16
, transformers
default-language: Haskell2010
|