aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.cabal
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-09 02:19:56 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-09 02:19:56 +0000
commit8307d7e80a88f1425eb0a93bbde4adff388b7cdc (patch)
tree308a9f53c0873f2442342e829caecf7b90264f6b /spec/thermoprint-spec.cabal
parenta2093f0a59dd1f557e8d5b885325d07a8aa55073 (diff)
downloadthermoprint-8307d7e80a88f1425eb0a93bbde4adff388b7cdc.tar
thermoprint-8307d7e80a88f1425eb0a93bbde4adff388b7cdc.tar.gz
thermoprint-8307d7e80a88f1425eb0a93bbde4adff388b7cdc.tar.bz2
thermoprint-8307d7e80a88f1425eb0a93bbde4adff388b7cdc.tar.xz
thermoprint-8307d7e80a88f1425eb0a93bbde4adff388b7cdc.zip
spec/src/Thermoprint/Printout.hs & test-framework
Implemented Printout, Paragraph, Chunk, Block, Line, and text Test coverage for text
Diffstat (limited to 'spec/thermoprint-spec.cabal')
-rw-r--r--spec/thermoprint-spec.cabal25
1 files changed, 22 insertions, 3 deletions
diff --git a/spec/thermoprint-spec.cabal b/spec/thermoprint-spec.cabal
index bde1b73..ba97420 100644
--- a/spec/thermoprint-spec.cabal
+++ b/spec/thermoprint-spec.cabal
@@ -17,9 +17,28 @@ build-type: Simple
17cabal-version: >=1.10 17cabal-version: >=1.10
18 18
19library 19library
20 -- exposed-modules: 20 hs-source-dirs: src
21 exposed-modules: Thermoprint.Printout
21 -- other-modules: 22 -- other-modules:
22 -- other-extensions: 23 -- other-extensions:
23 build-depends: base >=4.8 && <4.9 24 extensions: DeriveGeneric
25 , DeriveAnyClass
26 , OverloadedStrings
27 build-depends: base >=4.8.1 && <5
28 , containers >=0.5.6 && <1
29 , text >=1.2.1 && <2
30 , bytestring >=0.10.6 && <1
31 , deepseq >=1.4.1 && <2
32 , QuickCheck >=2.8.1 && <3
33 , quickcheck-instances >=0.3.11 && <4
34 , Cabal >=1.22.4 && <2
35 , cabal-test-quickcheck >=0.1.6 && <1
24 -- hs-source-dirs: 36 -- hs-source-dirs:
25 default-language: Haskell2010 \ No newline at end of file 37 default-language: Haskell2010
38
39Test-Suite tests
40 type: exitcode-stdio-1.0
41 main-is: Spec.hs
42 build-depends: base >=4.8.1 && <5
43 , thermoprint-spec -any
44 , hspec >=2.2.1 && <3 \ No newline at end of file