aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.nix
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.nix
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.nix')
-rw-r--r--spec/thermoprint-spec.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/thermoprint-spec.nix b/spec/thermoprint-spec.nix
index 2d1814e..82f018a 100644
--- a/spec/thermoprint-spec.nix
+++ b/spec/thermoprint-spec.nix
@@ -1,9 +1,9 @@
1{ mkDerivation, base, stdenv }: 1{ mkDerivation, base, bytestring, containers, stdenv, text, QuickCheck, quickcheck-instances, cabal-test-quickcheck, hspec }:
2mkDerivation { 2mkDerivation {
3 pname = "thermoprint-spec"; 3 pname = "thermoprint-spec";
4 version = "1.0.0"; 4 version = "1.0.0";
5 src = ./.; 5 src = ./.;
6 libraryHaskellDepends = [ base ]; 6 libraryHaskellDepends = [ base bytestring containers text QuickCheck quickcheck-instances cabal-test-quickcheck hspec ];
7 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 7 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
8 description = "A specification of the API and the payload datatypes and associated utilities"; 8 description = "A specification of the API and the payload datatypes and associated utilities";
9 license = stdenv.lib.licenses.publicDomain; 9 license = stdenv.lib.licenses.publicDomain;