Changeset 7049
- Timestamp:
- 01/14/08 15:16:45 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/test/unit/widget/sfWidgetFormSchemaDecoratorTest.php
r7046 r7049 11 11 require_once(dirname(__FILE__).'/../../bootstrap/unit.php'); 12 12 13 $t = new lime_test(1 5, new lime_output_color());13 $t = new lime_test(16, new lime_output_color()); 14 14 15 15 $w1 = new sfWidgetFormInput(); … … 67 67 $t->is($w['w1'], null, 'sfWidgetFormSchemaDecorator implements the ArrayAccess interface for the fields'); 68 68 $t->is($ws['w1'], null, 'sfWidgetFormSchemaDecorator implements the ArrayAccess interface for the fields'); 69 70 // __clone() 71 $t->diag('__clone()'); 72 $w1 = clone $w; 73 $t->ok($w1->getWidget() !== $w->getWidget(), '__clone() clones the embedded widget');