* test.scm: Re-enable tests asserting that '() is true, and not a
authorJim Blandy <jimb@red-bean.com>
Fri, 13 Jun 1997 05:50:28 +0000 (05:50 +0000)
committerJim Blandy <jimb@red-bean.com>
Fri, 13 Jun 1997 05:50:28 +0000 (05:50 +0000)
boolean.  This stuff has been true for a while.

ice-9/test.scm

index 7cf6641..912b7de 100644 (file)
 (test #f not 3)
 (test #f not (list 3))
 (test #t not #f)
-;;; Not for Guile
-;(test #f not '())
-;(test #f not (list))
+(test #f not '())
+(test #f not (list))
 (test #f not 'nil)
 
 (test #t boolean? #f)
 (test #f boolean? 0)
-;;; Not for Guile
-;(test #f boolean? '())
+(test #f boolean? '())
 (SECTION 6 2)
 (test #t eqv? 'a 'a)
 (test #f eqv? 'a 'b)