mirror of
https://github.com/github/semantic.git
synced 2024-11-24 08:54:07 +03:00
18 lines
442 B
Haskell
18 lines
442 B
Haskell
{-# LANGUAGE DataKinds #-}
|
|
module TermSpec where
|
|
|
|
import Category
|
|
import Data.Functor.Listable
|
|
import Data.String (String)
|
|
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 String '[Category])
|