[Zope3-checkins] SVN: Zope3/branches/3.3/src/zope/app/interface/tests/test_interface.py Oops, guess I didn't fix it.

Ross Patterson me at rpatterson.net
Mon Feb 26 22:42:48 EST 2007


Log message for revision 72869:
  Oops, guess I didn't fix it.
  
  Removing this test till I do fix it.
  

Changed:
  U   Zope3/branches/3.3/src/zope/app/interface/tests/test_interface.py

-=-
Modified: Zope3/branches/3.3/src/zope/app/interface/tests/test_interface.py
===================================================================
--- Zope3/branches/3.3/src/zope/app/interface/tests/test_interface.py	2007-02-27 03:04:41 UTC (rev 72868)
+++ Zope3/branches/3.3/src/zope/app/interface/tests/test_interface.py	2007-02-27 03:42:48 UTC (rev 72869)
@@ -186,19 +186,6 @@
             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)



More information about the Zope3-Checkins mailing list