summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/profile01.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/simplexml/tests/profile01.phpt')
-rw-r--r--ext/simplexml/tests/profile01.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/ext/simplexml/tests/profile01.phpt b/ext/simplexml/tests/profile01.phpt
deleted file mode 100644
index 91b9544f66..0000000000
--- a/ext/simplexml/tests/profile01.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-SimpleXML [profile]: Accessing a simple node
---SKIPIF--
-<?php if (!extension_loaded("simplexml")) print "skip"; ?>
---FILE--
-<?php
-$root = simplexml_load_string('<?xml version="1.0"?>
-<root>
- <child>Hello</child>
-</root>
-');
-
-echo $root->child;
-echo "\n---Done---\n";
-?>
---EXPECT--
-Hello
----Done---