1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 00:33:59 +03:00
semantic/test/TermSpec.hs
2017-07-28 14:37:02 -04:00

16 lines
391 B
Haskell

{-# LANGUAGE DataKinds #-}
module TermSpec where
import Category
import Data.Functor.Listable
import Term
import Test.Hspec (Spec, describe, parallel)
import Test.Hspec.Expectations.Pretty
import Test.Hspec.LeanCheck
spec :: Spec
spec = parallel $ do
describe "Term" $ do
prop "equality is reflexive" $
\ a -> unListableF a `shouldBe` (unListableF a :: SyntaxTerm '[Category])