diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-04-20 15:18:30 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-04-20 15:18:30 -0700 |
commit | 5996a8abcf12336586cee345180203dd1500c92f (patch) | |
tree | 83b5c32b6ab8610d6607b9b5486d55a40225c505 /tests | |
parent | 927607b5ff106224e49b63adc58454ffef2e2504 (diff) |
Rewrite tooltips code without jQuery
Diffstat (limited to 'tests')
-rw-r--r-- | tests/units/Helper/TextHelperTest.php | 8 |
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('<p>Ça marche</p>', $textHelper->markdownAttribute('Ça marche')); - $this->assertEquals('<p>Test with &quot;double quotes&quot;</p>', $textHelper->markdownAttribute('Test with "double quotes"')); - $this->assertEquals('<p>Test with 'single quotes'</p>', $textHelper->markdownAttribute("Test with 'single quotes'")); - } - public function testFormatBytes() { $textHelper = new TextHelper($this->container); |