summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-12-13 06:02:22 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-12-13 06:02:22 +0400
commit085d3368ad94a4e1a413a305876b829ffdcefbcf (patch)
treeda07d8e6772d2a44329120a8dd6d6f1c084753a3
parent61cb316ff3eeceaaaf65da3a0c902537219fe146 (diff)
Add a test for block bucket
-rw-r--r--tests/Network/BitTorrent/Exchange/BlockSpec.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Network/BitTorrent/Exchange/BlockSpec.hs b/tests/Network/BitTorrent/Exchange/BlockSpec.hs
index 0712a21d..158a30b4 100644
--- a/tests/Network/BitTorrent/Exchange/BlockSpec.hs
+++ b/tests/Network/BitTorrent/Exchange/BlockSpec.hs
@@ -13,4 +13,7 @@ instance Arbitrary BlockIx where
13 arbitrary = BlockIx <$> arbitrary <*> arbitrary <*> arbitrary 13 arbitrary = BlockIx <$> arbitrary <*> arbitrary <*> arbitrary
14 14
15spec :: Spec 15spec :: Spec
16spec = return () \ No newline at end of file 16spec = do
17 describe "bucket" $ do
18 it "render to piece when it is full" $ property $ \ bkt ->
19 if full bkt then isJust (toPiece bkt) \ No newline at end of file