Changeset 4893

Show
Ignore:
Timestamp:
09/08/08 21:02:31 (10 months ago)
Author:
jwage
Message:

Updating test to include Searchable as I18n child

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/tests/Ticket/1351TestCase.php

    r4892 r4893  
    7272    public function setUp() 
    7373    { 
    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); 
    7578    } 
    7679}