mirror of
https://github.com/github/semantic.git
synced 2024-11-24 08:54:07 +03:00
27 lines
776 B
Haskell
27 lines
776 B
Haskell
module TermSpec where
|
|
|
|
import Test.Hspec
|
|
import Test.Hspec.QuickCheck
|
|
import Data.Text.Arbitrary ()
|
|
|
|
import Prologue
|
|
import Data.String
|
|
import Interpreter
|
|
import Diff
|
|
import ArbitraryTerm
|
|
|
|
spec :: Spec
|
|
spec = parallel $ do
|
|
describe "Term" $ do
|
|
prop "equality is reflexive" $
|
|
\ a -> unTerm a == unTerm (a :: ArbitraryTerm String ())
|
|
|
|
describe "Diff" $ do
|
|
prop "equality is reflexive" $
|
|
\ a b -> let diff = diffTerms (free . Free) ((==) `on` extract) diffCost (unTerm a) (unTerm (b :: ArbitraryTerm String CategorySet)) in
|
|
diff == diff
|
|
|
|
prop "equal terms produce identity diffs" $
|
|
\ a -> let term = unTerm (a :: ArbitraryTerm String CategorySet) in
|
|
diffCost (diffTerms (free . Free) ((==) `on` extract) diffCost term term) == 0
|