[py-configparser-cvs] r31 - trunk/tests

ehuelsmann at common-lisp.net ehuelsmann at common-lisp.net
Sun Mar 16 18:09:00 UTC 2008


Author: ehuelsmann
Date: Sun Mar 16 13:08:59 2008
New Revision: 31

Modified:
   trunk/tests/tests.lisp
Log:
Fix test expectation (and indenting).

Modified: trunk/tests/tests.lisp
==============================================================================
--- trunk/tests/tests.lisp	(original)
+++ trunk/tests/tests.lisp	Sun Mar 16 13:08:59 2008
@@ -1,6 +1,6 @@
 
 (defpackage #:py-configparser-tests
-	(:use (#:cl #:py-configparser #:rt)))
+	(:use #:cl #:py-configparser #:rt))
 
 (in-package :py-configparser-tests)
 
@@ -136,7 +136,9 @@
 p=q
 z=%(p)s
 ")
-           (items (read-stream (make-config) s) "n" :expand nil)) '(("z" "%(p)s") ("p" . "q")))
+           (items (read-stream (make-config) s) "n" :expand nil))
+           '(("z" . "%(p)s")
+             ("p" . "q")))
   T)
 
 (deftest basic.items.2
@@ -144,7 +146,8 @@
 p=q
 z=%(p)s
 ")
-           (items (read-stream (make-config) s) "n" :expand t)) '(("z" . "q") ("p" . "q")))
+                  (items (read-stream (make-config) s) "n" :expand t))
+                '(("z" . "q") ("p" . "q")))
   T)
 
 (deftest basic.items.3



More information about the Py-configparser-cvs mailing list