mirror of
https://github.com/github/semantic.git
synced 2024-11-24 08:54:07 +03:00
15 lines
362 B
Haskell
15 lines
362 B
Haskell
{-# LANGUAGE DataKinds #-}
|
|
module Data.Term.Spec where
|
|
|
|
import Data.Functor.Listable
|
|
import Data.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 -> a `shouldBe` (a :: Term ListableSyntax ())
|