Changeset 3535

Show
Ignore:
Timestamp:
01/17/08 12:39:23 (18 months ago)
Author:
ppetermann
Message:

cleaning it up a bit

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/tests/Ticket/736TestCase.php

    r3533 r3535  
    11<?php 
    22/** 
    3  * Doctrine_Ticket_pp_TestCase 
     3 * Doctrine_Ticket_736_TestCase 
    44 * 
    55 * @package     Doctrine 
     
    2222        $delegate->parent = $module; 
    2323        $delegate->save(); 
    24          
    25         $module->save(); // guess i can  
    2624    } 
    2725     
     
    3028        $this->tables[] = 'T736_Module'; 
    3129        $this->tables[] = 'T736_ModuleDelegate'; 
    32         parent::prepareTables(); 
    3330    } 
    3431 
     
    3835        $module->moduledata->content = "foo"; 
    3936        $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..." 
    4138    } 
    4239}