1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 21:31:48 +03:00
semantic/test/TermSpec.hs
2017-07-23 16:08:05 -04:00

17 lines
407 B
Haskell

{-# LANGUAGE DataKinds #-}
module TermSpec where
import Category
import Data.Functor.Listable
import Prologue
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])