File: Skip.t

package info (click to toggle)
libtest-simple-perl 1.302075-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,844 kB
  • ctags: 628
  • sloc: perl: 10,369; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 626 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use Test2::Tools::Tiny;
use strict;
use warnings;

use Test2::Event::Skip;
use Test2::Util::Trace;

my $skip = Test2::Event::Skip->new(
    trace  => Test2::Util::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
    name   => 'skip me',
    reason => 'foo',
);

is($skip->name, 'skip me', "set name");
is($skip->reason, 'foo', "got skip reason");
ok(!$skip->pass, "no default for pass");
ok($skip->effective_pass, "TODO always effectively passes");

is($skip->summary, "skip me (SKIP: foo)", "summary with reason");

$skip->set_reason('');
is($skip->summary, "skip me (SKIP)", "summary without reason");

done_testing;