packages feed

type-assertions-0.1.0.0: type-assertions.cabal

-- This file has been generated from package.yaml by hpack version 0.14.0.
--
-- see: https://github.com/sol/hpack

name:           type-assertions
version:        0.1.0.0
synopsis:       Runtime type assertions for testing
description:    This package provides a way to make runtime assertions about types that
                cooperate with the typechecker, intended for use in testing. For more
                information, see the module documentation for "Test.TypeAssertions".
category:       Testing
homepage:       https://github.com/lexi-lambda/type-assertions#readme
bug-reports:    https://github.com/lexi-lambda/type-assertions/issues
maintainer:     Alexis King
license:        ISC
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    LICENSE
    package.yaml
    README.md
    stack.yaml

source-repository head
  type: git
  location: https://github.com/lexi-lambda/type-assertions

library
  hs-source-dirs:
      library
  ghc-options: -Wall
  build-depends:
      base >= 4.9.0.0 && < 5
  exposed-modules:
      Test.TypeAssertions
  default-language: Haskell2010

test-suite type-assertions-test-suite
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test-suite
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      base
    , hspec
    , test-fixture
    , type-assertions
  other-modules:
      Test.TypeAssertionsSpec
  default-language: Haskell2010