summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/016a.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/simplexml/tests/016a.phpt')
-rwxr-xr-xext/simplexml/tests/016a.phpt29
1 files changed, 0 insertions, 29 deletions
diff --git a/ext/simplexml/tests/016a.phpt b/ext/simplexml/tests/016a.phpt
deleted file mode 100755
index 9797e29305..0000000000
--- a/ext/simplexml/tests/016a.phpt
+++ /dev/null
@@ -1,29 +0,0 @@
---TEST--
-SimpleXML: concatenating attributes
---SKIPIF--
-<?php if (!extension_loaded("simplexml")) print "skip"; ?>
---FILE--
-<?php
-$xml =<<<EOF
-<people>
- <person name="Foo"></person>
-</people>
-EOF;
-
-$people = simplexml_load_string($xml);
-var_dump($people->person['name']);
-$people->person['name'] .= 'Bar';
-var_dump($people->person['name']);
-
-?>
-===DONE===
---EXPECTF--
-object(SimpleXMLElement)#%d (1) {
- [0]=>
- string(3) "Foo"
-}
-object(SimpleXMLElement)#%d (1) {
- [0]=>
- string(6) "FooBar"
-}
-===DONE===