1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 21:22:57 +02:00

Test for [img] bbcode in toHTML()

This commit is contained in:
Cameron 2018-09-12 13:18:47 -07:00
parent c72b08616b
commit 7bbf3164c7

View File

@ -57,6 +57,14 @@ TMP;
$this->assertEquals($expected,$actual, "BBcode parsing failed");
$src = "[center][img]{e_IMAGE}generic/blank_avatar.jpg[/img][/center]";
$actual = $this->tp->toHTML($src,true);
$expected = "<div class='bbcode-center' style='text-align:center'><img src='".e_HTTP."e107_images/generic/blank_avatar.jpg' width='' alt='Blank Avatar' title='Blank Avatar' class='img-rounded rounded bbcode bbcode-img' /></div>";
$this->assertEquals($expected, $actual, "BBcode parsing failed on [img]");
}
/*