1 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
2 module Lib.Tuple2.Test where
6 import Data.Proxy (Proxy(..))
7 import Prelude hiding ((&&), not, (||))
9 import Language.Symantic.Lib
18 (==>) = test_readTerm @() @SS
21 tests = 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))" )