Changeset 4039
- Timestamp:
- 03/19/08 05:45:47 (16 months ago)
- Files:
-
- 1 modified
-
branches/0.10/tests/RecordTestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/tests/RecordTestCase.php
r4035 r4039 41 41 $this->tables[] = 'Book'; 42 42 $this->tables[] = 'EntityAddress'; 43 $this->tables[] = 'UnderscoreColumn'; 43 44 parent::prepareTables(); 44 45 } … … 904 905 } 905 906 } 907 908 /* 909 public function testFirstCharUnderscoreColumn() 910 { 911 $record = new UnderscoreColumn(); 912 $record->_underscore_ = 'test'; 913 $record->save(); 914 915 $this->assertEqual($record->_underscore_, 'test'); 916 $this->assertTrue($record->id); 917 918 $query = new Doctrine_Query(); 919 $query->from('UnderscoreColumn'); 920 921 $result = $query->execute()->getFirst(); 922 $this->assertEqual($result->_underscore_, 'test'); 923 } 924 */ 906 925 }