aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-03-25 21:42:50 +0100
committerMario <mario@mariovavti.com>2024-03-25 21:52:14 +0000
commit6d5fa9205cc4007e07fad216fd1f1ef5980c9a01 (patch)
tree8829bd5120c171a0fc3a3cfced1c275573207199 /tests
parent0fee7804fbfa80764e10a445a8e9ca9610b6b49c (diff)
downloadvolse-hubzilla-6d5fa9205cc4007e07fad216fd1f1ef5980c9a01.tar.gz
volse-hubzilla-6d5fa9205cc4007e07fad216fd1f1ef5980c9a01.tar.bz2
volse-hubzilla-6d5fa9205cc4007e07fad216fd1f1ef5980c9a01.zip
more remove additional linebreaks after block element plus test
(cherry picked from commit 53354a19304c932beea484e387d2c9536786e258)
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/includes/BBCodeTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/includes/BBCodeTest.php b/tests/unit/includes/BBCodeTest.php
index a6c798992..a8aa8ee2b 100644
--- a/tests/unit/includes/BBCodeTest.php
+++ b/tests/unit/includes/BBCodeTest.php
@@ -107,6 +107,10 @@ class BBCodeTest extends UnitTestCase {
"[code]\ntestvar = \"this is a test\"\necho \"the message is \$testvar\"\n[/code]",
'<pre><code>testvar = "this is a test"<br />echo "the message is $testvar"</code></pre>',
],
+ 'code block with surroundin linebreaks \n' => [
+ "some text\n[code]\ntestvar = \"this is a test\"\necho \"the message is \$testvar\"\n[/code]\nsome more text",
+ 'some text<br /><pre><code>testvar = "this is a test"<br />echo "the message is $testvar"</code></pre>some more text',
+ ],
'list with linebreaks \n' => [
"some text\n[list]\n[*] item1\n[*] item2\n[/list]\nsome more text",
'some text<br /><ul class="listbullet"><li> item1<li> item2</ul>some more text'