File: plan_skip_all.t

package info (click to toggle)
libtest-aggregate-perl 0.364-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 200 kB
  • sloc: perl: 899; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

use lib 'lib', 't/lib';
use Test::More;

ok 1, 'Should be reached';

plan skip_all => 'Testing skip all';

ok 0, 'Should not reach here';