Merge pull request #112 from kengruven/master
[jscl.git] / tests / strings.lisp
index f3ff08f..f68ee1c 100644 (file)
 (test (not (string= "Foo" "foo")))
 (test (not (string= "foo" "foox")))
 
+(test (= (string< "one" "two") 0))
+(test (= (string< "oob" "ooc") 2))
+(test (null (string< "" "")))
+(test (null (string< "a" "")))
+(test (= (string< "" "a") 0))
+(test (= (string< "aaa" "aaaaa") 3))
+
 ;;; 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