diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-08 05:37:34 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-08 05:37:34 +0400 |
commit | 9c7227c5c0cac81351684ccfa2f49d6b97bedf03 (patch) | |
tree | 66c189f88e5d73c9bb704749fcbe937ac566ac1c /tests/Network/BitTorrent/Internal/ProgressSpec.hs | |
parent | 055a7efc93e410444719d4ac5ad07ce51e84e8aa (diff) |
Hide progress module
Diffstat (limited to 'tests/Network/BitTorrent/Internal/ProgressSpec.hs')
-rw-r--r-- | tests/Network/BitTorrent/Internal/ProgressSpec.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/Network/BitTorrent/Internal/ProgressSpec.hs b/tests/Network/BitTorrent/Internal/ProgressSpec.hs new file mode 100644 index 00000000..acbfd84c --- /dev/null +++ b/tests/Network/BitTorrent/Internal/ProgressSpec.hs | |||
@@ -0,0 +1,13 @@ | |||
1 | {-# OPTIONS -fno-warn-orphans #-} | ||
2 | module Network.BitTorrent.Internal.ProgressSpec (spec) where | ||
3 | import Control.Applicative | ||
4 | import Test.Hspec | ||
5 | import Test.QuickCheck | ||
6 | import Network.BitTorrent.Internal.Progress | ||
7 | |||
8 | |||
9 | instance Arbitrary Progress where | ||
10 | arbitrary = Progress <$> arbitrary <*> arbitrary <*> arbitrary | ||
11 | |||
12 | spec :: Spec | ||
13 | spec = return () | ||