[Zope-CVS] CVS: Products/Ape/lib/apelib/tests - serialtestbase.py:1.6.2.1

Shane Hathaway shane at zope.com
Tue Jul 20 22:26:29 EDT 2004


Update of /cvs-repository/Products/Ape/lib/apelib/tests
In directory cvs.zope.org:/tmp/cvs-serv32139/tests

Modified Files:
      Tag: sql-types-branch
	serialtestbase.py 
Log Message:
Checkpoint.  Started using common schemas for table specifications.

Renamed FieldSchema to ColumnSchema and got rid of RowSchema.  The new
names are less abstract.  This should make them easier to understand.


=== Products/Ape/lib/apelib/tests/serialtestbase.py 1.6 => 1.6.2.1 ===
--- Products/Ape/lib/apelib/tests/serialtestbase.py:1.6	Sat Mar 20 01:34:24 2004
+++ Products/Ape/lib/apelib/tests/serialtestbase.py	Tue Jul 20 22:25:58 2004
@@ -47,7 +47,7 @@
 class SerialTestBase:
 
     def setUp(self):
-        schema = schemas.FieldSchema("classification", "classification")
+        schema = schemas.ColumnSchema("classification", "classification")
         cfr = classifiers.SimpleClassifier(gateways.RAMGateway(schema))
         oid_gen = oidgen.SerialOIDGenerator()
         self.conf = mapper.MapperConfiguration({}, cfr, oid_gen)



More information about the Zope-CVS mailing list