summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/simplexml_import_dom.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/simplexml/tests/simplexml_import_dom.phpt')
-rwxr-xr-xext/simplexml/tests/simplexml_import_dom.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/simplexml/tests/simplexml_import_dom.phpt b/ext/simplexml/tests/simplexml_import_dom.phpt
deleted file mode 100755
index c66ba8f087..0000000000
--- a/ext/simplexml/tests/simplexml_import_dom.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-Interop: simplexml_import_dom
---SKIPIF--
-<?php if (!extension_loaded("simplexml")) print "skip"; ?>
-<?php if (!extension_loaded("dom")) print "skip. dom extension not loaded"; ?>
---FILE--
-<?php
-$dom = new domDocument;
-$dom->load(dirname(__FILE__)."/book.xml");
-if(!$dom) {
- echo "Error while parsing the document\n";
- exit;
-}
-$s = simplexml_import_dom($dom);
-$books = $s->book;
-foreach ($books as $book) {
- echo "{$book->title} was written by {$book->author}\n";
-}
-?>
---EXPECT--
-The Grapes of Wrath was written by John Steinbeck
-The Pearl was written by John Steinbeck