]> git.rkrishnan.org Git - functorrent.git/commitdiff
metainfotests: refactor
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Mon, 31 Jul 2017 02:32:32 +0000 (08:02 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Mon, 31 Jul 2017 02:32:32 +0000 (08:02 +0530)
test/MetainfoTests.hs

index 32d98e5325566a08cb0568690c3f3a2f802299f1..a9043db8ec70eea5ae94c1905c76c878fa2d1454 100644 (file)
@@ -36,20 +36,20 @@ tests = do
   hspec $ do
     describe "read and interpret a torrent file 1" $ do
       it "valid torrent file" $ do
-        (torrentToMetainfo fc) `shouldNotBe` (Left "parse error")
+        minfo `shouldNotBe` (Left "parse error")
       it "valid announce list" $ do
-        case torrentToMetainfo fc of
+        case minfo of
           Left _ -> pending
           Right metainfo -> do
             announceList metainfo `shouldSatisfy` (not . null)
       it "valid piece length" $ do
-        case torrentToMetainfo fc of
+        case minfo of
           Left _ -> pending
           Right metainfo -> do
             let (Just info') = info metainfo
             pieceLength info' `shouldBe` (524288 :: Integer)
       it "Not a multifile torrent" $ do
-        case torrentToMetainfo fc of
+        case minfo of
           Left _ -> pending
           Right metainfo -> do 
             let (Just i) = info metainfo