aboutsummaryrefslogtreecommitdiffstats
path: root/verifuzz.cabal
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-11-30 21:57:59 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-11-30 21:57:59 +0000
commit8b22145bf32c96067358193388a54621d3826628 (patch)
treed1bdae0905e919bab2c5dfe92b6f7dff5f937f60 /verifuzz.cabal
parent88ffe371e6a2ac5892b5249698f6f8ab1c323ee2 (diff)
downloadverismith-8b22145bf32c96067358193388a54621d3826628.tar.gz
verismith-8b22145bf32c96067358193388a54621d3826628.zip
Restructure and add tests
Diffstat (limited to 'verifuzz.cabal')
-rw-r--r--verifuzz.cabal26
1 files changed, 17 insertions, 9 deletions
diff --git a/verifuzz.cabal b/verifuzz.cabal
index 3f2e933..c6795a5 100644
--- a/verifuzz.cabal
+++ b/verifuzz.cabal
@@ -5,9 +5,9 @@ version: 0.1.0.0
homepage: https://github.com/githubuser/verifuzz#readme
license: BSD3
license-file: LICENSE
-author: Author name here
-maintainer: example@example.com
-copyright: 2018 Author name here
+author: Yann Herklotz
+maintainer: ymherklotz@gmail.com
+copyright: 2018 Yann Herklotz
category: Web
build-type: Simple
cabal-version: >=1.10
@@ -25,19 +25,27 @@ library
, QuickCheck
, fgl
, text
- , mwc-random
, random
, lens
executable verifuzz
- hs-source-dirs: src
+ hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
- other-modules: Test.VeriFuzz
build-depends: base >= 4.7 && < 5
- , QuickCheck
+ , verifuzz
, graphviz
, fgl
, text
- , mwc-random
- , random
+
+test-suite verifuzz-test
+ default-language: Haskell2010
+ type: exitcode-stdio-1.0
+ hs-source-dirs: tests
+ main-is: test.hs
+ other-modules: Test.VeriFuzz
+ build-depends: base >= 4 && < 5
+ , verifuzz
+ , tasty >= 0.7
+ , tasty-hunit >= 0.10
+ , tasty-quickcheck >= 0.10