summaryrefslogtreecommitdiffstats
path: root/application/third_party/test-more-php/t/testertests_func_skip.pl
blob: 4f3c545b0f2b09f893674ad69df44f240a1aaccd (plain)
1
2
3
4
5
6
7
8
9
#!/bin/env perl
    use strict;
    use warnings;
    use Test::More;
    plan(tests=>2);

    skip("Test: Skip one",1);
    fail("Gets skipped");
    pass("Gets run ok");