Changeset 156
- Timestamp:
- 02/10/06 15:24:52
- Files:
-
- trunk/test/zoo_fixture.py (modified) (2 diffs)
- trunk/units.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/zoo_fixture.py
r155 r156 124 124 class ZooTests(unittest.TestCase): 125 125 126 def test_1_ schema(self):126 def test_1_model(self): 127 127 self.assertEqual(Zoo.Animal.__class__, dejavu.ToMany) 128 128 self.assertEqual(Zoo.Animal.nearClass, Zoo) … … 760 760 class ZooSchema(dejavu.Schema): 761 761 762 # Set "latest" to 1 to test upgrading. 762 763 latest = 1 763 764 trunk/units.py
r155 r156 342 342 except Exception, x: 343 343 x.args += (value, type(value)) 344 raise x344 raise 345 345 return value 346 346
