r11859: Canonicalize whitespace
[getopt.git] / tests.lisp
index 5790baaa35ab825d6f370ae279a3dffc97dc4291..f8f657458420abcb2b47d83f5c6c3f2a11e7a082 100644 (file)
@@ -24,7 +24,7 @@
 (defun do-tests ()
   (with-tests (:name "GETOPT")
     (let ((*break-on-test-failures* nil))
-      
+
       ;; match-unique-abbreviation
       (test nil (match-unique-abbreviation "abc" nil))
       (test nil (match-unique-abbreviation "abc" '("ab")))
       (test nil (match-unique-abbreviation "ab" '("ab" "abc")))
       (test 1 (match-unique-abbreviation "ac" '("ab" "ac")))
       (test 1 (match-unique-abbreviation "ac" '("ab" "acb")))
-      
+
       ;; getopt
       (test-mv '(("argv") nil nil) (getopt '("argv") nil))
       (test-mv '(("argv" "2") nil nil) (getopt '("argv" "2") nil))
-      
+
       (test-mv '(("argv") (("c")) nil) (getopt '("argv" "-c") '(("c" :none))))
-      
-      (test-mv '(("argv") (("c" . "val")) nil) 
-              (getopt '("argv" "-c" "val") '(("c" :optional))))
-      (test-mv '(("argv" "v1") (("c" . "val")) nil) 
-              (getopt '("argv" "-c" "val" "v1") '(("c" :optional))))
-      (test-mv '(( "v1") (("colon" . "val")) nil) 
-              (getopt '("--colon" "val" "v1") '(("colon" :optional))))
-      (test-mv '(("ab" "-c") (("colon" . "val")) nil) 
-              (getopt '("ab" "--colon" "val" "--" "-c") 
-                      '(("colon" :optional) ("-c" :none))))
-      (test-mv '(("argv") (("c" . "cd")) nil) 
-              (getopt '("argv" "-c" "cd") '(("c" :required))))
-      (test-mv '(("argv") nil ("c")) 
-              (getopt '("argv" "-c") '(("c" :required))))
-      (test-mv '(("argv") (("c" . "10")) nil) 
-              (getopt '("argv" "-c=10") '(("c" :required))))
-      (test-mv '(("argv") nil ("c")) 
-              (getopt '("argv" "-c=10") '(("c" :none))))
-      (test-mv '(nil (("along" . "10")) nil) 
-              (getopt '("--along=10") '(("along" :optional))))
-      (test-mv '(nil nil ("along")) 
-              (getopt '("--along=10") '(("along" :none)))) 
-      (test-mv '(nil (("along" . "10")) nil) 
-              (getopt '("--a=10") '(("along" :optional)))) 
+
+      (test-mv '(("argv") (("c" . "val")) nil)
+               (getopt '("argv" "-c" "val") '(("c" :optional))))
+      (test-mv '(("argv" "v1") (("c" . "val")) nil)
+               (getopt '("argv" "-c" "val" "v1") '(("c" :optional))))
+      (test-mv '(( "v1") (("colon" . "val")) nil)
+               (getopt '("--colon" "val" "v1") '(("colon" :optional))))
+      (test-mv '(("ab" "-c") (("colon" . "val")) nil)
+               (getopt '("ab" "--colon" "val" "--" "-c")
+                       '(("colon" :optional) ("-c" :none))))
+      (test-mv '(("argv") (("c" . "cd")) nil)
+               (getopt '("argv" "-c" "cd") '(("c" :required))))
+      (test-mv '(("argv") nil ("c"))
+               (getopt '("argv" "-c") '(("c" :required))))
+      (test-mv '(("argv") (("c" . "10")) nil)
+               (getopt '("argv" "-c=10") '(("c" :required))))
+      (test-mv '(("argv") nil ("c"))
+               (getopt '("argv" "-c=10") '(("c" :none))))
+      (test-mv '(nil (("along" . "10")) nil)
+               (getopt '("--along=10") '(("along" :optional))))
+      (test-mv '(nil nil ("along"))
+               (getopt '("--along=10") '(("along" :none))))
+      (test-mv '(nil (("along" . "10")) nil)
+               (getopt '("--a=10") '(("along" :optional))))
       (test-mv '(nil nil ("a"))
-              (getopt '("--a=10") '(("along" :optional) ("aboot" :optional))))
+               (getopt '("--a=10") '(("along" :optional) ("aboot" :optional))))
       (test-mv '(("a") nil nil)
                (getopt '("a") '(("a" :none))))
       ))