summaryrefslogtreecommitdiff
path: root/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2014-02-04 18:16:14 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2014-02-04 18:16:14 +0400
commit24df88dd3e63024155d86ac3231ca2abbba3fc86 (patch)
tree562dc7b9c1833f69590016ccdf1d0283b55c5240 /tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
parenteaf426da786acf925a1786938c5ae2b1c9230a07 (diff)
Update tests
Diffstat (limited to 'tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs')
-rw-r--r--tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs12
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs b/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
index eb549516..81c4fae0 100644
--- a/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
+++ b/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
@@ -24,11 +24,13 @@ spec = do
24 context (show uri) $ do 24 context (show uri) $ do
25 describe "announce" $ do 25 describe "announce" $ do
26 it "have valid response" $ do 26 it "have valid response" $ do
27 q <- arbitrarySample 27 withManager def $ \ mgr -> do
28 info <- runResourceT $ connect uri >>= announce q 28 q <- arbitrarySample
29 validateInfo q info 29 info <- runResourceT $ announce mgr uri q
30 validateInfo q info
30 31
31 describe "scrape" $ do 32 describe "scrape" $ do
32 it "have valid response" $ do 33 it "have valid response" $ do
33 xs <- runResourceT $ connect uri >>= scrape [def] 34 withManager def $ \ mgr -> do
34 L.length xs `shouldSatisfy` (>= 1) 35 xs <- runResourceT $ scrape mgr uri [def]
36 L.length xs `shouldSatisfy` (>= 1)