[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Formulator/tests - testPropertyFieldAdapter.py:1.3

Jeremy Hylton jeremy@zope.com
Tue, 16 Jul 2002 18:55:31 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/Formulator/tests
In directory cvs.zope.org:/tmp/cvs-serv9612

Modified Files:
	testPropertyFieldAdapter.py 
Log Message:
Fix typos.
Comment out unimplemented test.


=== Zope3/lib/python/Zope/App/Formulator/tests/testPropertyFieldAdapter.py 1.2 => 1.3 ===
 class Test(unittest.TestCase):
 
 
-    def testAdapterRegistry(self):
-        """Test somehow whether the PropertyFieldAdapter was correclty
-           registered"""
+##    def testAdapterRegistry(self):
+##        """Test somehow whether the PropertyFieldAdapter was correctly
+##           registered"""
 
-        # XXX I do not know how to do these tests yet.
+##        # XXX I do not know how to do these tests yet.
 
 
     def testSetData(self):
-        """Test setting the data in the ContentObejct."""
+        """Test setting the data in the ContentObject."""
 
         content = ContentObject()
         field = DataField(content)
@@ -67,7 +67,7 @@
 
 
     def testGetData(self):
-        """Test getting the data from the ContentObejct."""
+        """Test getting the data from the ContentObject."""
 
         content = ContentObject()
         content.data = 'Some Data'