text-show-3.6: tests/Spec/Derived/ExistentialQuantificationSpec.hs
{-# LANGUAGE CPP #-}
{-|
Module: Spec.Derived.ExistentialQuantificationSpec
Copyright: (C) 2014-2017 Ryan Scott
License: BSD-style (see the file LICENSE)
Maintainer: Ryan Scott
Stability: Provisional
Portability: GHC
@hspec@ tests for existentially quantified data types.
-}
module Spec.Derived.ExistentialQuantificationSpec (main, spec) where
import Data.Proxy (Proxy(..))
import Derived.ExistentialQuantification
import Spec.Utils (matchesTextShow1Spec)
import Test.Hspec (Spec, describe, hspec, parallel)
main :: IO ()
main = hspec spec
spec :: Spec
spec = parallel $ do
describe "TyCon Int Int Int Int" $
matchesTextShow1Spec (Proxy :: Proxy (TyCon Int Int Int Int))
#if MIN_VERSION_template_haskell(2,7,0)
describe "TyFamily Int Int Int Int" $
matchesTextShow1Spec (Proxy :: Proxy (TyFamily Int Int Int Int))
#endif