[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Introspector/tests - testIntrospector.py:1.3.6.3
Deb
dhazarika@zeomega.com
Tue, 29 Oct 2002 08:56:31 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Introspector/tests
In directory cvs.zope.org:/tmp/cvs-serv8757/lib/python/Zope/App/OFS/Introspector/tests
Modified Files:
Tag: Zope3-Bangalore-TTW-Branch
testIntrospector.py
Log Message:
=== Zope3/lib/python/Zope/App/OFS/Introspector/tests/testIntrospector.py 1.3.6.2 => 1.3.6.3 ===
--- Zope3/lib/python/Zope/App/OFS/Introspector/tests/testIntrospector.py:1.3.6.2 Tue Oct 29 07:19:34 2002
+++ Zope3/lib/python/Zope/App/OFS/Introspector/tests/testIntrospector.py Tue Oct 29 08:56:31 2002
@@ -44,22 +44,22 @@
request['PATH_INFO'] = '++module++Zope.App.OFS.Introspector.tests.TestClass.TestClass'
ints.setRequest(request)
self.assertEqual(ints.getClass(), 'TestClass')
- self.assertEqual(ints.getBaseClassNames(), ['TestClass.BaseTestClass'])
- self.assertEqual(ints.getModule(), 'TestClass')
+ self.assertEqual(ints.getBaseClassNames(), ['Zope.App.OFS.Introspector.tests.TestClass.BaseTestClass'])
+ self.assertEqual(ints.getModule(), 'Zope.App.OFS.Introspector.tests.TestClass')
self.assertEqual(ints.getDocString(), "This is my stupid doc string")
self.assertEqual(ints.getInterfaces(), (ITestClass,))
- self.assertEqual(ints.getInterfaceNames(), ['TestClass.ITestClass'])
+ self.assertEqual(ints.getInterfaceNames(), ['Zope.App.OFS.Introspector.tests.TestClass.ITestClass'])
self.assertEqual(ints.getExtends(), (BaseTestClass,))
ints = Introspector(I3)
self.assertEqual(ints.isInterface(), 1)
request['PATH_INFO'] = '++module++Zope.App.OFS.Introspector.tests.TestClass.I3'
ints.setRequest(request)
- self.assertEqual(ints.getModule(), 'TestClass')
+ self.assertEqual(ints.getModule(), 'Zope.App.OFS.Introspector.tests.TestClass')
self.assertEqual(ints.getExtends(), (I, I2, ))
self.assertEqual(ints.getDocString(), "This is dummy doc string")
Iname = 'I3'
- bases = ['TestClass.I', 'TestClass.I2']
+ bases = ['Zope.App.OFS.Introspector.tests.TestClass.I', 'Zope.App.OFS.Introspector.tests.TestClass.I2']
desc = 'This is dummy doc string'
m1_name = 'one'
m1_signature = '(param)'