summaryrefslogtreecommitdiffstats
path: root/application/third_party/test-more-php/t/testertests_require_ok_missing.php
blob: 087d5d0c04eb0cde0d5caa99b8a71e02ee8baef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php



    $lib = isset($_SERVER['TESTLIB']) ? $_SERVER['TESTLIB'] : 'Test-Simple.php';
    require_once($lib);
    plan(2);

    require_ok('missing.php','Requiring a missing file should be not ok');

    ok(1, 'Continue testing after failed require');
?>