]> git.rkrishnan.org Git - functorrent.git/commitdiff
test pass
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Fri, 28 Jul 2017 13:52:59 +0000 (19:22 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Fri, 28 Jul 2017 13:52:59 +0000 (19:22 +0530)
src/FuncTorrent/Bencode.hs
test/MetainfoTests.hs

index 28f0460a828af94d7d47ca978ed3bf4e290f6980..d4eb58c5ac12d0e4f811eb050f95266733b9f262 100644 (file)
@@ -152,7 +152,7 @@ bencDict = between (char 'd') (char 'e') $ fromList <$> many kvpair
                     return (k, v)
         bdictKey = do
           ds <- many1 digit <* char ':'
-          s <- count (read ds) alphaNum
+          s <- count (read ds) anyChar
           return s
 
 
index 9f1a2e23b19d7dec2f58765030221df6e73dff44..32d98e5325566a08cb0568690c3f3a2f802299f1 100644 (file)
@@ -33,7 +33,6 @@ tests :: IO ()
 tests = do
   fc <- readFile "data/debian-7.8.0-amd64-CD-1.iso.torrent"
   let minfo = torrentToMetainfo fc
-  putStrLn $ show minfo
   hspec $ do
     describe "read and interpret a torrent file 1" $ do
       it "valid torrent file" $ do
@@ -54,7 +53,7 @@ tests = do
           Left _ -> pending
           Right metainfo -> do 
             let (Just i) = info metainfo
-            (length (filemeta i)) `shouldSatisfy` (== 0)
+            (length (filemeta i)) `shouldSatisfy` (== 1)
 
     describe "read and interpret a multifile torrent file" $ do
       it "valid multifile torrent file" $ do