Ejemplo n.º 1
0
 public function testGetJavaScriptWithAddedItem()
 {
     $input = ['id' => 'option_id3', 'label' => 'Option Three', 'url' => '*/*/option3', 'block_name' => 'admin.test.grid.massaction.option3'];
     $expected = '#"option_id3":{"id":"option_id3","label":"Option Three",' . '"url":"http:\\\\/\\\\/localhost\\\\/index\\.php\\\\/(?:key\\\\/([\\w\\d]+)\\\\/)?",' . '"block_name":"admin.test.grid.massaction.option3"}#';
     $this->_block->addItem($input['id'], $input);
     $this->assertRegExp($expected, $this->_block->getJavaScript());
 }