1 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
2 module HUnit.Tuple2 where
5 import Data.Either (Either(..))
6 import Data.Proxy (Proxy(..))
7 import Prelude (Integer)
9 import Language.Symantic.Lib
10 import Testing.Compiling
18 (==>) = readTe @() @SS
21 hunits = testGroup "Tuple2"
22 [ "()" ==> Right (tyUnit, (), "()")
23 , "(,) 1 2" ==> Right (tyTuple2 tyInteger tyInteger, (1,2), "(1, 2)")
24 , "(1,2)" ==> Right (tyTuple2 tyInteger tyInteger, (1,2), "(1, 2)")
25 , "((1,2), (3,4))" ==> Right
26 ( let t = tyTuple2 tyInteger tyInteger in tyTuple2 t t
28 , "((1, 2), (3, 4))" )