From: Samuel Chase Date: Sun, 12 May 2013 19:42:28 +0000 (+0530) Subject: Add test for string< X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=3a47ae080697f4fc58c56a84eedbe1ce3abe1021;p=jscl.git Add test for string< --- diff --git a/tests/strings.lisp b/tests/strings.lisp index f3ff08f..eab8a6b 100644 --- a/tests/strings.lisp +++ b/tests/strings.lisp @@ -17,6 +17,8 @@ (test (not (string= "Foo" "foo"))) (test (not (string= "foo" "foox"))) +(test (= (string< "one" "two") 0)) + ;;; BUG: The compiler will macroexpand the forms below (char str N) ;;; will expand to internal SBCL code instead of our (setf char). It ;;; is because macrodefinitions during bootstrapping are not included