Changeset 3535
- Timestamp:
- 01/17/08 12:39:23 (18 months ago)
- Files:
-
- 1 modified
-
branches/0.10/tests/Ticket/736TestCase.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/tests/Ticket/736TestCase.php
r3533 r3535 1 1 <?php 2 2 /** 3 * Doctrine_Ticket_ pp_TestCase3 * Doctrine_Ticket_736_TestCase 4 4 * 5 5 * @package Doctrine … … 22 22 $delegate->parent = $module; 23 23 $delegate->save(); 24 25 $module->save(); // guess i can26 24 } 27 25 … … 30 28 $this->tables[] = 'T736_Module'; 31 29 $this->tables[] = 'T736_ModuleDelegate'; 32 parent::prepareTables();33 30 } 34 31 … … 38 35 $module->moduledata->content = "foo"; 39 36 $module->moduledata->save(); 40 $this->assertTrue($module->moduledata->content == "foo"); 37 $this->assertTrue($module->moduledata->content == "foo"); // should be "foo" is "Lorem Ipsum and so on..." 41 38 } 42 39 }