Changeset 3792
- Timestamp:
- 02/15/08 18:13:28 (17 months ago)
- Files:
-
- 1 modified
-
branches/0.10/tests/Ticket/736TestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/tests/Ticket/736TestCase.php
r3535 r3792 26 26 public function prepareTables() 27 27 { 28 $this->tables = array(); 28 29 $this->tables[] = 'T736_Module'; 29 30 $this->tables[] = 'T736_ModuleDelegate'; 31 parent::prepareTables(); 30 32 } 31 33 … … 35 37 $module->moduledata->content = "foo"; 36 38 $module->moduledata->save(); 37 $this->assertTrue($module->moduledata->content == "foo"); // should be "foo" is "Lorem Ipsum and so on..." 39 $this->assertTrue($module->moduledata->content == "foo"); // should be "foo" is "Lorem Ipsum and so on..." 40 38 41 } 39 42 }