1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
{-# LANGUAGE CPP #-}
#if !(MIN_VERSION_base(4,8,0))
{-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
#endif
{-|
Module: Spec.Data.OldTypeableSpec
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 "Data.OldTypeable" module.
-}
module Spec.Data.OldTypeableSpec (main, spec) where
import Instances.Data.OldTypeable ()
import Prelude ()
import Prelude.Compat
import Test.Hspec (Spec, hspec, parallel)
#if !(MIN_VERSION_base(4,8,0))
import Data.OldTypeable (TyCon, TypeRep)
import Data.Proxy.Compat (Proxy(..))
import Spec.Utils (matchesTextShowSpec)
import Test.Hspec (describe)
#endif
main :: IO ()
main = hspec spec
spec :: Spec
spec = parallel $ do
#if !(MIN_VERSION_base(4,8,0))
describe "TypeRep" $
matchesTextShowSpec (Proxy :: Proxy TypeRep)
describe "TyCon" $
matchesTextShowSpec (Proxy :: Proxy TyCon)
#else
pure ()
#endif
|