packages feed

text-show-3.9: tests/Spec/Derived/TypeFamiliesSpec.hs

{-|
Module:      Spec.Derived.TypeFamiliesSpec
Copyright:   (C) 2020 Ryan Scott
License:     BSD-style (see the file LICENSE)
Maintainer:  Ryan Scott
Stability:   Provisional
Portability: GHC

@hspec@ tests involving corner case-provoking type families.
-}
module Spec.Derived.TypeFamiliesSpec (main, spec) where

{-
import Data.Proxy.Compat (Proxy(..))

import Derived.TypeFamilies
-}

import Prelude ()
import Prelude.Compat

{-
import Spec.Utils (matchesTextShow1Spec)

import Test.Hspec (Spec, describe, hspec, parallel)
-}
import Test.Hspec (Spec, hspec)

main :: IO ()
main = hspec spec

spec :: Spec
spec = pure ()
{-
TODO: Uncomment once we depend on deriving-compat-0.5.8 as the minimum

spec = parallel $ do
    describe "TyConOverSat Int Int" $
        matchesTextShow1Spec (Proxy :: Proxy (TyConOverSat Int Int))
    describe "TyFamilyOverSat Int Int" $
        matchesTextShow1Spec (Proxy :: Proxy (TyFamilyOverSat Int Int))
-}