From 2943073bff36d5dacdf153c4b98586d7c8d07a34 Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Sun, 27 Jul 2003 13:03:21 +0000 Subject: [PATCH] Test that invalid method qualifiers in some methods does not break calls for which those methods are not applicable. --- .../defgeneric-method-combination-append.lsp | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/ansi-tests/defgeneric-method-combination-append.lsp b/ansi-tests/defgeneric-method-combination-append.lsp index e2fc05f2..5cbeb3d7 100644 --- a/ansi-tests/defgeneric-method-combination-append.lsp +++ b/ansi-tests/defgeneric-method-combination-append.lsp @@ -200,3 +200,28 @@ (handler-case (funcall fn '(b)) (error () :error))) :error) + +(deftest defgeneric-method-combination.append.13 + (progn + (eval '(defgeneric dg-mc.append.13 (x) + (:method-combination append) + (:method append ((x dgmc-class-01)) (list 'foo)) + (:method append ((x dgmc-class-02)) (list 'bar)) + (:method nonsense ((x dgmc-class-03)) (list 'bad)))) + (values + (dg-mc.append.13 (make-instance 'dgmc-class-01)) + (dg-mc.append.13 (make-instance 'dgmc-class-02)) + (handler-case + (dg-mc.append.13 (make-instance 'dgmc-class-03)) + (error () :caught)) + (handler-case + (dg-mc.append.13 (make-instance 'dgmc-class-04)) + (error () :caught)) + (handler-case + (dg-mc.append.13 (make-instance 'dgmc-class-07)) + (error () :caught)))) + (foo) + (bar foo) + :caught + :caught + :caught) -- GitLab