aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 15:46:44 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 15:46:44 -0400
commitb16ad3aad8cc051b8de5b34c742522f4a574ae8d (patch)
treef4dc26efca1c14ba3a22dd3d9bf9303cac462c14 /test
parent9397bba55cfacc2ddaa59f84c01ce3d4e38e2232 (diff)
Add .unique() test
Diffstat (limited to 'test')
-rw-r--r--test/lists.tm2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lists.tm b/test/lists.tm
index f918b6f7..05001f19 100644
--- a/test/lists.tm
+++ b/test/lists.tm
@@ -186,3 +186,5 @@ func main()
= []
>> nums.pop()
= none
+
+ assert [1,2,1,2,3].unique() == [1,2,3]