[Zope-Checkins] CVS: Zope/lib/python/ZServer/tests - test_config.py:1.3
Fred L. Drake, Jr.
fred@zope.com
Mon, 24 Mar 2003 17:33:11 -0500
Update of /cvs-repository/Zope/lib/python/ZServer/tests
In directory cvs.zope.org:/tmp/cvs-serv25455/ZServer/tests
Modified Files:
test_config.py
Log Message:
Use dotted names for abstract types in ZConfig schema components.
=== Zope/lib/python/ZServer/tests/test_config.py 1.2 => 1.3 ===
--- Zope/lib/python/ZServer/tests/test_config.py:1.2 Tue Mar 18 16:15:18 2003
+++ Zope/lib/python/ZServer/tests/test_config.py Mon Mar 24 17:32:40 2003
@@ -34,7 +34,9 @@
sio = StringIO.StringIO("""
<schema>
<import package='ZServer'/>
- <multisection name='*' type='server' attribute='servers'/>
+ <multisection name='*'
+ type='ZServer.server'
+ attribute='servers'/>
</schema>
""")
schema = ZConfig.loadSchemaFile(sio)