Example #1
0
 function testPrepend()
 {
     $block = ListBlock::make('one', 'two');
     $block->prepend('three', 'four');
     $block->prepend(array('five', 'six'));
     $block->prepend('seven');
     $this->assertEquals('sevenfivesixthreefouronetwo', (string) $block);
 }