From: Ramakrishnan Muthukrishnan Date: Sun, 26 Apr 2015 01:49:40 +0000 (+0530) Subject: add quickcheck as a test dependency X-Git-Url: https://git.rkrishnan.org/?p=functorrent.git;a=commitdiff_plain;h=8959836bcd874e19a09a45d03430df1cd4083a2f add quickcheck as a test dependency --- diff --git a/functorrent.cabal b/functorrent.cabal index 2d2db98..19a6c92 100644 --- a/functorrent.cabal +++ b/functorrent.cabal @@ -73,6 +73,7 @@ test-suite functorrent-test containers, directory, doctest, + QuickCheck, tasty, tasty-hunit, QuickCheck, diff --git a/shell.nix b/shell.nix index cf892c6..4016503 100644 --- a/shell.nix +++ b/shell.nix @@ -13,7 +13,7 @@ with haskellPackages; cabal.mkDerivation (self: { base16Bytestring binary cryptohash HTTP networkUri parsec tasty tastyHunit ]; - testDepends = [ doctest hlint tasty tastyHunit ]; + testDepends = [ doctest hlint QuickCheck tasty tastyHunit ]; meta = { description = "A Bit-torrent client"; license = self.stdenv.lib.licenses.gpl3;