From 13d88e997fb38e49d4ba64f43a54e38528ac6bc3 Mon Sep 17 00:00:00 2001 From: HongboZhang Date: Sun, 21 Apr 2024 14:35:55 +0800 Subject: [PATCH] add test --- tuple/tuple_show.mbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tuple/tuple_show.mbt b/tuple/tuple_show.mbt index 8d76da65c..002980f0d 100644 --- a/tuple/tuple_show.mbt +++ b/tuple/tuple_show.mbt @@ -58,4 +58,6 @@ test "to_string" { inspect(tuple3, content="(a, b, c)")? inspect(tuple4, content="(1, 2, 3, hello)")? inspect(tuple5, content="(List::[1], 2, 3, [4], 5)")? + inspect((1,2,3,4,5,6), ~content="(1, 2, 3, 4, 5, 6)")? + inspect((1,2,3,4,5,6,7), ~content="(1, 2, 3, 4, 5, 6, 7)")? }