Update of /project/s-xml-rpc/cvsroot/s-xml-rpc/test In directory common-lisp.net:/tmp/cvs-serv10345/test
Modified Files: all-tests.lisp Added Files: test-extensions.lisp Log Message:
- Add extensions.lisp, for the various add-on specs floating around that cluttered xml-rpc.lisp
- New file test-extensions.lisp, for testing them
- Add support for symbols client-side (encode them as strings)
- Extension system.getCapabilities: implemented, spec at http://groups.yahoo.com/group/xml-rpc/message/2897
- Add passing of symbols (encode them as strings)- Use standard error codes (spec at http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php), wonder about semantics of "internal xml-rpc error" vs "application error", pick one arbitrarily
Date: Thu Jun 17 12:43:11 2004 Author: rschlatte
Index: s-xml-rpc/test/all-tests.lisp diff -u s-xml-rpc/test/all-tests.lisp:1.1.1.1 s-xml-rpc/test/all-tests.lisp:1.2 --- s-xml-rpc/test/all-tests.lisp:1.1.1.1 Wed Jun 9 02:02:40 2004 +++ s-xml-rpc/test/all-tests.lisp Thu Jun 17 12:43:11 2004 @@ -1,6 +1,6 @@ ;;;; -*- mode: lisp -*- ;;;; -;;;; $Id: all-tests.lisp,v 1.1.1.1 2004/06/09 09:02:40 scaekenberghe Exp $ +;;;; $Id: all-tests.lisp,v 1.2 2004/06/17 19:43:11 rschlatte Exp $ ;;;; ;;;; Load and execute all unit and functional tests ;;;; @@ -12,5 +12,6 @@
(load (merge-pathnames "test-base64" *load-pathname*) :verbose t) (load (merge-pathnames "test-xml-rpc" *load-pathname*) :verbose t) +(load (merge-pathnames "test-extensions" *load-pathname*) :verbose t)
;;;; eof