summaryrefslogtreecommitdiffstats
path: root/application/third_party/test-more-php/t/testertests_include_ok_fatal.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/third_party/test-more-php/t/testertests_include_ok_fatal.php')
-rwxr-xr-xapplication/third_party/test-more-php/t/testertests_include_ok_fatal.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/application/third_party/test-more-php/t/testertests_include_ok_fatal.php b/application/third_party/test-more-php/t/testertests_include_ok_fatal.php
new file mode 100755
index 000000000..982cd5caf
--- /dev/null
+++ b/application/third_party/test-more-php/t/testertests_include_ok_fatal.php
@@ -0,0 +1,17 @@
+<?php
+
+
+
+ $lib = isset($_SERVER['TESTLIB']) ? $_SERVER['TESTLIB'] : 'Test-Simple.php';
+ require_once($lib);
+ plan(3);
+
+ diag('If PHP throws a fatal error, bail as nicely as possible.');
+
+ ok(1, "Pass one for good measure");
+
+ include_ok($lib,'Including a library again should redefine a function and bail.');
+
+ ok(1, 'This test will not be reached.');
+
+?>