blob: 093f6f1969816dca39e2e793f532114ae560b178 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{-# OPTIONS -fno-warn-orphans #-}
module Data.Torrent.BitfieldSpec (spec) where
import Control.Applicative
import Test.Hspec
import Test.QuickCheck
import Data.Torrent.Bitfield
instance Arbitrary Bitfield where
arbitrary = fromBitmap <$> arbitrary
spec :: Spec
spec = return ()
|