adding a test for the yet untested javascript protocol

This commit is contained in:
euromark 2012-08-01 12:14:46 +02:00
parent f0ffe098d3
commit 2a674fc461

View file

@ -338,6 +338,10 @@ class HtmlHelperTest extends CakeTestCase {
$expected = array('a' => array('href' => 'http://www.example.org?param1=value1&param2=value2'), 'http://www.example.org?param1=value1&param2=value2', '/a');
$this->assertTags($result, $expected);
$result = $this->Html->link('alert', 'javascript:alert(\'cakephp\');');
$expected = array('a' => array('href' => 'javascript:alert('cakephp');'), 'alert', '/a');
$this->assertTags($result, $expected);
$result = $this->Html->link('write me', 'mailto:example@cakephp.org');
$expected = array('a' => array('href' => 'mailto:example@cakephp.org'), 'write me', '/a');
$this->assertTags($result, $expected);