diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2014-01-09 05:40:13 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2014-01-09 05:40:13 +0400 |
commit | 3cc3e07e6db83b4b213d84c79dcb4b3aa1331b6c (patch) | |
tree | 67fcbb0635470fb68186b72b2d9b3c845b5d0e3b /tests/Network/BitTorrent | |
parent | 735cddf5d2be9f5423d8e5dba18902d8276896aa (diff) |
Rename Node.hs to NodeInfo.hs
Diffstat (limited to 'tests/Network/BitTorrent')
-rw-r--r-- | tests/Network/BitTorrent/Core/NodeInfoSpec.hs (renamed from tests/Network/BitTorrent/Core/NodeSpec.hs) | 2 | ||||
-rw-r--r-- | tests/Network/BitTorrent/CoreSpec.hs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/Network/BitTorrent/Core/NodeSpec.hs b/tests/Network/BitTorrent/Core/NodeInfoSpec.hs index 3f27f9eb..fb777440 100644 --- a/tests/Network/BitTorrent/Core/NodeSpec.hs +++ b/tests/Network/BitTorrent/Core/NodeInfoSpec.hs | |||
@@ -1,5 +1,5 @@ | |||
1 | {-# OPTIONS -fno-warn-orphans #-} | 1 | {-# OPTIONS -fno-warn-orphans #-} |
2 | module Network.BitTorrent.Core.NodeSpec (spec) where | 2 | module Network.BitTorrent.Core.NodeInfoSpec (spec) where |
3 | import Control.Applicative | 3 | import Control.Applicative |
4 | import Data.Serialize as S | 4 | import Data.Serialize as S |
5 | import Data.String | 5 | import Data.String |
diff --git a/tests/Network/BitTorrent/CoreSpec.hs b/tests/Network/BitTorrent/CoreSpec.hs index 9f9eb0eb..460c52be 100644 --- a/tests/Network/BitTorrent/CoreSpec.hs +++ b/tests/Network/BitTorrent/CoreSpec.hs | |||
@@ -1,9 +1,9 @@ | |||
1 | -- | Re-export modules. | 1 | -- | Re-export modules. |
2 | module Network.BitTorrent.CoreSpec (spec) where | 2 | module Network.BitTorrent.CoreSpec (spec) where |
3 | import Network.BitTorrent.Core.FingerprintSpec as CoreSpec () | 3 | import Network.BitTorrent.Core.FingerprintSpec as CoreSpec () |
4 | import Network.BitTorrent.Core.NodeSpec as CoreSpec () | 4 | import Network.BitTorrent.Core.NodeInfoSpec as CoreSpec () |
5 | import Network.BitTorrent.Core.PeerIdSpec as CoreSpec () | 5 | import Network.BitTorrent.Core.PeerIdSpec as CoreSpec () |
6 | import Network.BitTorrent.Core.PeerAddrSpec as CoreSpec () | 6 | import Network.BitTorrent.Core.PeerAddrSpec as CoreSpec () |
7 | 7 | ||
8 | import Test.Hspec (Spec) | 8 | import Test.Hspec (Spec) |
9 | 9 | ||