From f022e71c0c39358666be958dc684e7d1df3e2aaf Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Tue, 8 Jan 2019 19:27:34 -0600 Subject: [PATCH] TESTS: Added some new test coverage. --- integration_tests/list_test.ucg | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/integration_tests/list_test.ucg b/integration_tests/list_test.ucg index 15de474..2b3cf62 100644 --- a/integration_tests/list_test.ucg +++ b/integration_tests/list_test.ucg @@ -1 +1,11 @@ -let empty_list = []; \ No newline at end of file +let empty_list = []; + +let concatenated = ["foo"] + ["bar"]; + +assert | + concatenated == ["foo", "bar"]; +|; + +assert | + concatenated + empty_list == ["foo", "bar"]; +|; \ No newline at end of file