summaryrefslogtreecommitdiff
path: root/ext/spl/tests/iterator_010.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/iterator_010.phpt')
-rwxr-xr-xext/spl/tests/iterator_010.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/ext/spl/tests/iterator_010.phpt b/ext/spl/tests/iterator_010.phpt
deleted file mode 100755
index 39d1000f62..0000000000
--- a/ext/spl/tests/iterator_010.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-SPL: EmptyIterator
---FILE--
-<?php
-
-echo "===EmptyIterator===\n";
-
-foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
-{
- echo "$key=>$val\n";
-}
-
-?>
-===DONE===
-<?php exit(0);
---EXPECTF--
-===EmptyIterator===
-===DONE===