Changeset 4893
- Timestamp:
- 09/08/08 21:02:31 (10 months ago)
- Files:
-
- 1 modified
-
branches/1.0/tests/Ticket/1351TestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/tests/Ticket/1351TestCase.php
r4892 r4893 72 72 public function setUp() 73 73 { 74 $this->actAs('I18n', array('fields' => array('title', 'body'))); 74 $i18n0 = new Doctrine_Template_I18n(array('fields' => array(0 => 'title', 1 => 'body'))); 75 $searchable1 = new Doctrine_Template_Searchable(array('fields' => array(0 => 'title'))); 76 $i18n0->addChild($searchable1); 77 $this->actAs($i18n0); 75 78 } 76 79 }