summaryrefslogtreecommitdiff
path: root/tests/axis1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/axis1.py')
-rw-r--r--tests/axis1.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/axis1.py b/tests/axis1.py
index 3ae3225..2206d02 100644
--- a/tests/axis1.py
+++ b/tests/axis1.py
@@ -40,17 +40,17 @@ setup_logging()
class TestPlugin(Plugin):
- def onInit(self, context):
- print 'init: ctx=%s' % context.__dict__
+ def initialized(self, context):
+ print 'initialized: ctx=%s' % context.__dict__
- def onLoad(self, context):
- print 'loading: ctx=%s' % context.__dict__
+ def loaded(self, context):
+ print 'loaded: ctx=%s' % context.__dict__
- def onSend(self, context):
+ def sending(self, context):
print 'sending: ctx=%s' % context.__dict__
- def onReply(self, context):
- print 'gotreply: ctx=%s' % context.__dict__
+ def received(self, context):
+ print 'received: ctx=%s' % context.__dict__
#logging.getLogger('suds.client').setLevel(logging.DEBUG)