From 720c8893749556208296af0ee5adcfe9eb373ec7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 11 Nov 2008 12:33:24 +0000 Subject: - Allow ``testing.registerEventListener`` to be used with Zope 3 style "object events" (subscribers accept more than a single event argument). We extend the list with the arguments, rather than append. Prep for 0.4.7. --- repoze/bfg/testing.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'repoze/bfg/testing.py') diff --git a/repoze/bfg/testing.py b/repoze/bfg/testing.py index 26690c48d..a7fc12827 100644 --- a/repoze/bfg/testing.py +++ b/repoze/bfg/testing.py @@ -44,10 +44,11 @@ def registerEventListener(event_iface=Interface): matches ``event_iface``, that event will be appended to the list. You can then compare the values in the list to expected event notifications. This method is useful when testing code that wants - to call ``zope.component.event.dispatch``.""" + to call ``zope.component.event.dispatch`` or + ``zope.component.event.objectEventNotify``.""" L = [] - def subscriber(event): - L.append(event) + def subscriber(*event): + L.extend(event) registerSubscriber(subscriber, event_iface) return L -- cgit v1.2.3