summaryrefslogtreecommitdiffstats
path: root/application/third_party/test-more-php/t/testertests_func_skip.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/third_party/test-more-php/t/testertests_func_skip.php')
-rwxr-xr-xapplication/third_party/test-more-php/t/testertests_func_skip.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/application/third_party/test-more-php/t/testertests_func_skip.php b/application/third_party/test-more-php/t/testertests_func_skip.php
new file mode 100755
index 000000000..1a5f03823
--- /dev/null
+++ b/application/third_party/test-more-php/t/testertests_func_skip.php
@@ -0,0 +1,11 @@
+<?php
+
+ $lib = isset($_SERVER['TESTLIB']) ? $_SERVER['TESTLIB'] : 'Test-More.php';
+ require_once($lib);
+ plan(2);
+
+ skip("Test: Skip one",1);
+ fail("Gets skipped");
+ pass("Gets run ok");
+
+?>