text-show-3.11: tests/Spec/GHC/TypeLitsSpec.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-|
Module: Spec.GHC.TypeLitsSpec
Copyright: (C) 2014-2017 Ryan Scott
License: BSD-style (see the file LICENSE)
Maintainer: Ryan Scott
Stability: Provisional
Portability: GHC
@hspec@ tests for data types in the "GHC.TypeLits" module.
-}
module Spec.GHC.TypeLitsSpec (main, spec) where
import Data.Proxy (Proxy(..))
import GHC.TypeLits
import Instances.GHC.TypeLits ()
import Prelude ()
import Prelude.Compat
import Spec.Utils (matchesTextShowSpec)
#if MIN_VERSION_base(4,18,0)
import Spec.Utils (Some)
#endif
import Test.Hspec (Spec, describe, hspec, parallel)
main :: IO ()
main = hspec spec
spec :: Spec
spec = parallel $ do
describe "SomeNat" $
matchesTextShowSpec (Proxy :: Proxy SomeNat)
describe "SomeSymbol" $
matchesTextShowSpec (Proxy :: Proxy SomeSymbol)
#if MIN_VERSION_base(4,16,0)
describe "SomeChar" $
matchesTextShowSpec (Proxy :: Proxy SomeChar)
#endif
#if MIN_VERSION_base(4,18,0)
describe "Some SNat" $
matchesTextShowSpec (Proxy :: Proxy (Some SNat))
describe "Some SSymbol" $
matchesTextShowSpec (Proxy :: Proxy (Some SSymbol))
describe "Some SChar" $
matchesTextShowSpec (Proxy :: Proxy (Some SChar))
#endif