From bfb40c02bc6af84f48bfd470b1edc1909c2d65be Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 30 Aug 2018 14:26:32 -0700 Subject: [PATCH] Added test for list addition. --- core/collections.nom | 1 + 1 file changed, 1 insertion(+) diff --git a/core/collections.nom b/core/collections.nom index 9c7e8d0..2af7605 100644 --- a/core/collections.nom +++ b/core/collections.nom @@ -29,6 +29,7 @@ test: assume ((%list::last) == 5) %list::remove index 1 assume ((%list::first) == 2) + assume (([1, 2] + [3, 4]) == [1, 2, 3, 4]) # Dict functionality test: