Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
Oops, guess I didn't fix it.
Browse files Browse the repository at this point in the history
Removing this test till I do fix it.
  • Loading branch information
rpatterson committed Feb 27, 2007
1 parent 0997ead commit daf3763
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/test_interface.py
Expand Up @@ -186,19 +186,6 @@ class Baz(object):
Baz.__implemented__.__bases__,
barmodule.IBar.dependents.keys()[1].__bases__
)

def test_persistentProvides(self):
"""Verify that provideInterface works."""

self.registry.newModule("barmodule", bar_code)
barmodule = self.registry.findModule("barmodule")
provideInterface('', barmodule.IBar, iface_type=IBarInterface)
self.assertTrue(IBarInterface.providedBy(barmodule.IBar))

self.registry.updateModule('barmodule',
bar_code + '\nfoo = 1')
barmodule = self.registry.findModule("barmodule")
self.assertTrue(IBarInterface.providedBy(barmodule.IBar))

def test_suite():
return unittest.makeSuite(PersistentInterfaceTest)

0 comments on commit daf3763

Please sign in to comment.