mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
17 lines
453 B
Haskell
17 lines
453 B
Haskell
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
module ArbitraryTerm where
|
|
|
|
import Data.Text.Arbitrary ()
|
|
import Data.These.Arbitrary ()
|
|
import Prologue hiding (fst, snd)
|
|
import Source hiding ((++))
|
|
import Test.QuickCheck hiding (Fixed)
|
|
|
|
data CategorySet = A | B | C | D deriving (Eq, Show)
|
|
|
|
instance Arbitrary CategorySet where
|
|
arbitrary = elements [ A, B, C, D ]
|
|
|
|
instance Arbitrary a => Arbitrary (Source a) where
|
|
arbitrary = Source.fromList <$> arbitrary
|