Changeset 4010 for branches/0.10/tests

Show
Ignore:
Timestamp:
03/18/08 05:00:01 (10 months ago)
Author:
jwage
Message:

Added documentation for nesting plugins.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/tests/PluginTestCase.php

    r3884 r4010  
    8787    } 
    8888} 
     89 
    8990class Wiki extends Doctrine_Record 
    9091{ 
     
    9798    public function setUp() 
    9899    { 
    99         $options = array('fields' => array('title', 'content')); 
     100          $options = array('fields' => array('title', 'content')); 
    100101        $auditLog = new Doctrine_Template_Versionable($options); 
    101102        $search = new Doctrine_Template_Searchable($options); 
    102         $slug = new Doctrine_Template_Sluggable($options); 
     103          $slug = new Doctrine_Template_Sluggable($options); 
    103104        $i18n = new Doctrine_Template_I18n($options); 
    104105 
     
    110111        $this->actAs($i18n); 
    111112 
    112         $this->actAs('Timestampable');    
    113  
     113        $this->actAs('Timestampable'); 
    114114    } 
    115115}