summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2014-04-08 05:37:34 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2014-04-08 05:37:34 +0400
commit9c7227c5c0cac81351684ccfa2f49d6b97bedf03 (patch)
tree66c189f88e5d73c9bb704749fcbe937ac566ac1c /tests
parent055a7efc93e410444719d4ac5ad07ce51e84e8aa (diff)
Hide progress module
Diffstat (limited to 'tests')
-rw-r--r--tests/Network/BitTorrent/Internal/ProgressSpec.hs (renamed from tests/Data/Torrent/ProgressSpec.hs)4
-rw-r--r--tests/Network/BitTorrent/Tracker/MessageSpec.hs2
-rw-r--r--tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs2
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/Data/Torrent/ProgressSpec.hs b/tests/Network/BitTorrent/Internal/ProgressSpec.hs
index 32efbd7a..acbfd84c 100644
--- a/tests/Data/Torrent/ProgressSpec.hs
+++ b/tests/Network/BitTorrent/Internal/ProgressSpec.hs
@@ -1,9 +1,9 @@
1{-# OPTIONS -fno-warn-orphans #-} 1{-# OPTIONS -fno-warn-orphans #-}
2module Data.Torrent.ProgressSpec (spec) where 2module Network.BitTorrent.Internal.ProgressSpec (spec) where
3import Control.Applicative 3import Control.Applicative
4import Test.Hspec 4import Test.Hspec
5import Test.QuickCheck 5import Test.QuickCheck
6import Data.Torrent.Progress 6import Network.BitTorrent.Internal.Progress
7 7
8 8
9instance Arbitrary Progress where 9instance Arbitrary Progress where
diff --git a/tests/Network/BitTorrent/Tracker/MessageSpec.hs b/tests/Network/BitTorrent/Tracker/MessageSpec.hs
index 92fd8d79..29854d58 100644
--- a/tests/Network/BitTorrent/Tracker/MessageSpec.hs
+++ b/tests/Network/BitTorrent/Tracker/MessageSpec.hs
@@ -17,7 +17,7 @@ import Test.Hspec
17import Test.QuickCheck 17import Test.QuickCheck
18 18
19import Data.TorrentSpec () 19import Data.TorrentSpec ()
20import Data.Torrent.ProgressSpec () 20import Network.BitTorrent.Internal.ProgressSpec ()
21import Network.BitTorrent.Address () 21import Network.BitTorrent.Address ()
22import Network.BitTorrent.Address () 22import Network.BitTorrent.Address ()
23 23
diff --git a/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs b/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
index 65f58911..e928f917 100644
--- a/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
+++ b/tests/Network/BitTorrent/Tracker/RPC/HTTPSpec.hs
@@ -5,7 +5,7 @@ import Data.Default
5import Data.List as L 5import Data.List as L
6import Test.Hspec 6import Test.Hspec
7 7
8import Data.Torrent.Progress 8import Network.BitTorrent.Internal.Progress
9import Network.BitTorrent.Tracker.Message as Message 9import Network.BitTorrent.Tracker.Message as Message
10import Network.BitTorrent.Tracker.RPC.HTTP 10import Network.BitTorrent.Tracker.RPC.HTTP
11 11