summaryrefslogtreecommitdiffstats
path: root/application/third_party/test-more-php/t/testertests_func_skip.php
blob: 1a5f03823e1b182fc68e2f20ff86476d3c62ac48 (plain)
1
2
3
4
5
6
7
8
9
10
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");

?>