summaryrefslogtreecommitdiff
path: root/tests/lang/005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/005.phpt')
-rw-r--r--tests/lang/005.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/lang/005.phpt b/tests/lang/005.phpt
deleted file mode 100644
index ea413769b0..0000000000
--- a/tests/lang/005.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-Simple If/ElseIf/Else Test
---POST--
---GET--
---FILE--
-<?php $a=1;
- if($a==0):
- echo "bad";
- elseif($a==3):
- echo "bad";
- else:
- echo "good";
- endif?>
---EXPECT--
-good