[Zope3-checkins] CVS: Zope3/src/zope/app/component/tests -
test_interface.py:1.1 test_requirepermissions.py:1.11
test_interfaceservice.py:NONE
Suresh Babu Eddala
sbabu at zeomega.com
Fri Mar 5 10:54:07 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/component/tests
In directory cvs.zope.org:/tmp/cvs-serv11682/src/zope/app/component/tests
Modified Files:
test_requirepermissions.py
Added Files:
test_interface.py
Removed Files:
test_interfaceservice.py
Log Message:
renamed test_interfaceservice.py to test_interface.py
=== Added File Zope3/src/zope/app/component/tests/test_interface.py ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
import unittest
from zope.testing.doctestunit import DocTestSuite
def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.app.component.interface'),
))
if __name__ == "__main__":
unittest.TextTestRunner().run(test_suite())
=== Zope3/src/zope/app/component/tests/test_requirepermissions.py 1.10 => 1.11 ===
--- Zope3/src/zope/app/component/tests/test_requirepermissions.py:1.10 Thu Nov 27 08:59:17 2003
+++ Zope3/src/zope/app/component/tests/test_requirepermissions.py Fri Mar 5 10:54:06 2004
@@ -19,7 +19,7 @@
import zope.app.component
import zope.app.security
-from zope.app.component.globalinterfaceservice import queryInterface
+from zope.app.component.interface import queryInterface
from zope.app.component.tests import module
from zope.app.tests.placelesssetup import PlacelessSetup
from zope.security.checker import selectChecker
=== Removed File Zope3/src/zope/app/component/tests/test_interfaceservice.py ===
More information about the Zope3-Checkins
mailing list