Added is-string=
authorAttila Lendvai <attila.lendvai@gmail.com>
Sat, 30 Sep 2006 15:54:02 +0000 (17:54 +0200)
committerattila.lendvai <attila.lendvai@gmail.com>
Sat, 30 Sep 2006 15:54:02 +0000 (17:54 +0200)
src/check.lisp
src/packages.lisp

index 8d5f99f..e2a4a95 100644 (file)
@@ -184,6 +184,13 @@ If the value is a (values a b * d *) form then the elements at * are not compare
                         (is (equal ,expr-result (multiple-value-list ,value))))
               else collect `(is (equal ,expr ,value))))))
 
+(defmacro is-string= (&rest args)
+  "Generates (is (string= ,expr ,value)) for each pair of elements."
+  `(progn
+    ,@(loop for (expr value) on args by #'cddr
+            do (assert (and expr value))
+            collect `(is (string= ,expr ,value)))))
+
 (defmacro is-true (condition &rest reason-args)
   "Like IS this check generates a pass if CONDITION returns true
   and a failure if CONDITION returns false. Unlike IS this check
index a041cfa..34436f3 100644 (file)
@@ -39,6 +39,7 @@
           ;; running checks
            #:is
            #:is-equal
+           #:is-string=
            #:is-true
            #:is-false
            #:signals