summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/013.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/simplexml/tests/013.phpt')
-rwxr-xr-xext/simplexml/tests/013.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/simplexml/tests/013.phpt b/ext/simplexml/tests/013.phpt
deleted file mode 100755
index fbd80b0c44..0000000000
--- a/ext/simplexml/tests/013.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-SimpleXML and Split text content
---SKIPIF--
-<?php
- if (!extension_loaded('simplexml')) print 'skip';
-?>
---FILE--
-<?php
-
-$xml =<<<EOF
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<foo>bar<baz/>bar</foo>
-EOF;
-
-$sxe = simplexml_load_string($xml);
-
-var_dump((string)$sxe);
-
-?>
-===DONE===
---EXPECT--
-string(6) "barbar"
-===DONE===