summaryrefslogtreecommitdiffstats
path: root/application/third_party/test-more-php/t/testertests_require_ok_borklib.php
blob: 4472ca795587c4fccdf7ea00de3a61cb35e3c70a (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('borklib.php','Requiring a file with non-syntactical errors should be not ok');

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