summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2018-04-20 15:18:30 -0700
committerFrédéric Guillot <fred@kanboard.net>2018-04-20 15:18:30 -0700
commit5996a8abcf12336586cee345180203dd1500c92f (patch)
tree83b5c32b6ab8610d6607b9b5486d55a40225c505 /tests
parent927607b5ff106224e49b63adc58454ffef2e2504 (diff)
Rewrite tooltips code without jQuery
Diffstat (limited to 'tests')
-rw-r--r--tests/units/Helper/TextHelperTest.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/units/Helper/TextHelperTest.php b/tests/units/Helper/TextHelperTest.php
index abe921fe..f8c0f845 100644
--- a/tests/units/Helper/TextHelperTest.php
+++ b/tests/units/Helper/TextHelperTest.php
@@ -102,14 +102,6 @@ class TextHelperTest extends Base
$this->assertEquals('<p>Text @admin @notfound</p>', $textHelper->markdown('Text @admin @notfound', true));
}
- public function testMarkdownAttribute()
- {
- $textHelper = new TextHelper($this->container);
- $this->assertEquals('&lt;p&gt;&Ccedil;a marche&lt;/p&gt;', $textHelper->markdownAttribute('Ça marche'));
- $this->assertEquals('&lt;p&gt;Test with &amp;quot;double quotes&amp;quot;&lt;/p&gt;', $textHelper->markdownAttribute('Test with "double quotes"'));
- $this->assertEquals('&lt;p&gt;Test with &#039;single quotes&#039;&lt;/p&gt;', $textHelper->markdownAttribute("Test with 'single quotes'"));
- }
-
public function testFormatBytes()
{
$textHelper = new TextHelper($this->container);