Changeset 4010 for branches/0.10/tests
- Timestamp:
- 03/18/08 05:00:01 (10 months ago)
- Files:
-
- 1 modified
-
branches/0.10/tests/PluginTestCase.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/tests/PluginTestCase.php
r3884 r4010 87 87 } 88 88 } 89 89 90 class Wiki extends Doctrine_Record 90 91 { … … 97 98 public function setUp() 98 99 { 99 $options = array('fields' => array('title', 'content'));100 $options = array('fields' => array('title', 'content')); 100 101 $auditLog = new Doctrine_Template_Versionable($options); 101 102 $search = new Doctrine_Template_Searchable($options); 102 $slug = new Doctrine_Template_Sluggable($options);103 $slug = new Doctrine_Template_Sluggable($options); 103 104 $i18n = new Doctrine_Template_I18n($options); 104 105 … … 110 111 $this->actAs($i18n); 111 112 112 $this->actAs('Timestampable'); 113 113 $this->actAs('Timestampable'); 114 114 } 115 115 }