2016-12-01 03:55:53 +03:00
|
|
|
-- Initial relational-quickcheck.cabal generated by cabal init. For
|
|
|
|
-- further documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: relational-quickcheck
|
|
|
|
version: 0.1.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Kei Hibino
|
|
|
|
maintainer: ex8k.hibino@gmail.com
|
|
|
|
-- copyright:
|
|
|
|
category: Testing
|
|
|
|
build-type: Simple
|
|
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
|
|
|
Test.Relational.QuickCheck.Model
|
|
|
|
Test.Relational.QuickCheck.Arbitrary
|
2016-12-18 08:44:06 +03:00
|
|
|
|
|
|
|
Test.Relational.QuickCheck.Tests
|
2016-12-01 03:55:53 +03:00
|
|
|
-- other-modules:
|
|
|
|
other-extensions: TemplateHaskell, MultiParamTypeClasses, FlexibleInstances
|
|
|
|
build-depends: base <5
|
|
|
|
, QuickCheck >=2
|
2017-01-17 03:11:14 +03:00
|
|
|
, quickcheck-simple
|
2016-12-08 11:02:14 +03:00
|
|
|
, HDBC
|
|
|
|
, HDBC-session
|
2016-12-18 08:35:43 +03:00
|
|
|
, persistable-record
|
2016-12-01 03:55:53 +03:00
|
|
|
, relational-query
|
|
|
|
, relational-query-HDBC
|
|
|
|
hs-source-dirs: src
|
2016-12-08 11:02:14 +03:00
|
|
|
ghc-options: -Wall
|
|
|
|
default-language: Haskell2010
|