summaryrefslogtreecommitdiff
path: root/tests/Network/BitTorrent/Internal
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Network/BitTorrent/Internal')
-rw-r--r--tests/Network/BitTorrent/Internal/ProgressSpec.hs13
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 #-}
2module Network.BitTorrent.Internal.ProgressSpec (spec) where
3import Control.Applicative
4import Test.Hspec
5import Test.QuickCheck
6import Network.BitTorrent.Internal.Progress
7
8
9instance Arbitrary Progress where
10 arbitrary = Progress <$> arbitrary <*> arbitrary <*> arbitrary
11
12spec :: Spec
13spec = return ()