From 279ba3e7a268ba8c63e199151d0833ace5e11c99 Mon Sep 17 00:00:00 2001 From: "Elf M. Sternberg" Date: Sat, 27 Jun 2015 10:45:20 -0700 Subject: [PATCH] Added nil/nil testing. Still don't like the lack of an identity function. --- test/lists.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/test/lists.coffee b/test/lists.coffee index a60d7cb..8a844b4 100644 --- a/test/lists.coffee +++ b/test/lists.coffee @@ -8,6 +8,7 @@ expect = chai.expect describe "Basic list building", -> for [t, v] in [ [cons(), cons()] + [cons(nil), cons(nil)] [cons('a'), cons('a')] [cons('a', cons('b', cons('c'))), cons('a', cons('b', cons('c')))] [cons('a', cons('b', cons('c'))), cons('a', cons('b', cons('c', nil)))]