Changeset 4364 for trunk/tests_old/DataType
- Timestamp:
- 05/13/08 22:20:34 (8 months ago)
- Files:
-
- 1 modified
-
trunk/tests_old/DataType/BooleanTestCase.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests_old/DataType/BooleanTestCase.php
r4338 r4364 43 43 44 44 $this->assertIdentical($test->is_working, false); 45 $this->assertEqual($test->state(), Doctrine_ Record::STATE_TDIRTY);45 $this->assertEqual($test->state(), Doctrine_Entity::STATE_TDIRTY); 46 46 $test->save(); 47 47 … … 99 99 100 100 $this->assertIdentical($this->is_working, null); 101 $this->assertEqual($test->state(), Doctrine_ Record::STATE_TDIRTY);101 $this->assertEqual($test->state(), Doctrine_Entity::STATE_TDIRTY); 102 102 $test->save(); 103 103 … … 109 109 110 110 $this->assertIdentical($this->is_working_notnull, null); 111 $this->assertEqual($test->state(), Doctrine_ Record::STATE_TDIRTY);111 $this->assertEqual($test->state(), Doctrine_Entity::STATE_TDIRTY); 112 112 $test->save(); 113 113