diff --git a/tests/unit/eHelperTest.php b/tests/unit/eHelperTest.php
index 33fe024e7..aefb54ea5 100644
--- a/tests/unit/eHelperTest.php
+++ b/tests/unit/eHelperTest.php
@@ -58,12 +58,40 @@
{
}
-
- public function testTitle2sef()
+*/
+ public function testTitle2sefFromPlainText()
{
+ $actual = $this->hp->title2sef('Plain text test');
+ $expected = 'plain-text-test';
+ $this->assertEquals($expected, $actual);
}
+ public function testTitle2sefFromPlainTextStripSpecialChars()
+ {
+ $actual = $this->hp->title2sef('Plain text test with special chars !()+*+#"\'\\');
+ $expected = 'plain-text-test-with-special-chars';
+
+ $this->assertEquals($expected, $actual);
+ }
+
+ public function testTitle2sefFromBbcodeText()
+ {
+ $actual = $this->hp->title2sef('BBCode [b]text[/b] test [img]logo.png[/img]');
+ $expected = 'bbcode-text-test';
+
+ $this->assertEquals($expected, $actual);
+ }
+
+ public function testTitle2sefFromHtmlText()
+ {
+ $actual = $this->hp->title2sef('HTML text test
');
+ $expected = 'html-text-test';
+
+ $this->assertEquals($expected, $actual);
+ }
+
+/*
public function testCamelize()
{