summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/highlight_heredoc.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/general_functions/highlight_heredoc.phpt')
-rw-r--r--ext/standard/tests/general_functions/highlight_heredoc.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/standard/tests/general_functions/highlight_heredoc.phpt b/ext/standard/tests/general_functions/highlight_heredoc.phpt
deleted file mode 100644
index 58f83806a5..0000000000
--- a/ext/standard/tests/general_functions/highlight_heredoc.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-highlight_string() handling of heredoc
---FILE--
-<?php
-$str = '
-$x=<<<DD
-jhdsjkfhjdsh
-DD
-."";
-$a=<<<DDDD
-jhdsjkfhjdsh
-DDDD;
-';
-highlight_string($str);
-?>
---EXPECT--
-<code><span style="color: #000000">
-<br />$x=&lt;&lt;&lt;DD<br />jhdsjkfhjdsh<br />DD<br />."";<br />$a=&lt;&lt;&lt;DDDD<br />jhdsjkfhjdsh<br />DDDD;<br /></span>
-</code>