greskell-core-0.1.0.0: test/Data/Greskell/Test/QuickCheck.hs
{-# OPTIONS_GHC -fno-warn-orphans #-}
-- | QuickCheck orphan instances and other utility.
module Data.Greskell.Test.QuickCheck
() where
import Data.Text (Text, pack)
import Test.QuickCheck (Arbitrary(..))
instance Arbitrary Text where
arbitrary = fmap pack arbitrary