[Zope3-checkins] CVS: Packages/ZConfig/tests - test_schema.py:1.11

Fred L. Drake, Jr. fred@zope.com
Thu, 6 Feb 2003 10:10:34 -0500


Update of /cvs-repository/Packages/ZConfig/tests
In directory cvs.zope.org:/tmp/cvs-serv26345

Modified Files:
	test_schema.py 
Log Message:
Make sure the bug I fixed yesterday in the AbstractType class
(non-support of the description attribute) gets tickled by the ZConfig
test suite.


=== Packages/ZConfig/tests/test_schema.py 1.10 => 1.11 ===
--- Packages/ZConfig/tests/test_schema.py:1.10	Mon Jan 20 18:10:45 2003
+++ Packages/ZConfig/tests/test_schema.py	Thu Feb  6 10:10:30 2003
@@ -334,7 +334,9 @@
     def test_load_abstracttype(self):
         schema = self.load_schema_text(
             "<schema>"
-            "  <abstracttype name='group'/>"
+            "  <abstracttype name='group'>"
+            "    <description>This is an abstract section type.</description>"
+            "  </abstracttype>"
             "  <sectiontype name='t1' implements='group'>"
             "    <key name='k1' default='default1'/>"
             "  </sectiontype>"