コード例 #1
0
ファイル: StringTest.php プロジェクト: grrr-amsterdam/garp3
 public function testLinkify()
 {
     $this->assertEquals('Our contact email is <a href="mailto:contact@grrr.nl">contact@grrr.nl</a>, ' . 'but it can be found at <a href="http://www.grrr.nl">http://www.grrr.nl</a>', Garp_Util_String::linkify('Our contact email is contact@grrr.nl, but it can be found at http://www.grrr.nl'));
     $this->assertEquals('This also works for secure connections like ' . '<a href="https://www.grrr.nl">https://www.grrr.nl</a>', Garp_Util_String::linkify('This also works for secure connections like https://www.grrr.nl'));
 }