Skip to content

Commit

Permalink
Finally, all tests pass that do not require backward-compatibility!
Browse files Browse the repository at this point in the history
Yipee!

There are a couple of tasks left before the merge:

1. Write tests for zope.app.component.browser

2. Provide BBB for the changes in zope.app.component.
  • Loading branch information
strichter committed Jan 13, 2005
1 parent 9202be4 commit 58e71df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmlrpc/tests/test_directives.py
Expand Up @@ -45,8 +45,8 @@ def testView(self):
self.assertEqual(
zapi.queryMultiAdapter((ob, request), name='test'), None)
xmlconfig.file("xmlrpc.zcml", xmlrpc.tests)
self.assertEqual(
zapi.queryMultiAdapter((ob, request), name='test').__class__, V1)
view = zapi.queryMultiAdapter((ob, request), name='test')
self.assert_(V1 in view.__class__.__bases__)

def testInterfaceProtectedView(self):
xmlconfig.file("xmlrpc.zcml", xmlrpc.tests)
Expand Down

0 comments on commit 58e71df

Please sign in to comment.