Home
last modified time | relevance | path

Searched refs:has_todo (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/
Dregression.t69 has_todo => FALSE,
79 has_todo => FALSE,
90 has_todo => FALSE,
101 has_todo => FALSE,
112 has_todo => FALSE,
144 has_todo => FALSE,
154 has_todo => FALSE,
165 has_todo => FALSE,
176 has_todo => FALSE,
187 has_todo => FALSE,
[all …]
Dparse.t100 ok !$test->has_todo, '... nor a TODO test';
134 ok $failed->has_todo, '... but it is a TODO succeeded';
170 ok !$test->has_todo, '... nor a TODO test';
192 ok !$failed->has_todo, '... and not a TODO test';
222 ok !$test->has_todo, '... but not a TODO test';
247 ok $bonus->has_todo, '... but it is a TODO succeeded';
273 ok $passed->has_todo, '... but it is a TODO succeeded';
384 ok !$test->has_todo, '... nor a TODO test';
426 ok !$test->has_todo, '... nor a TODO test';
Dcallbacks.t31 $todo++ if $test->has_todo;
63 $todo++ if $test->has_todo;
Dresults.t208 has_todo => '',
256 has_todo => 1,
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/
DResult.pm215 return ( $self->has_todo || $self->has_skip );
230 sub has_todo { 'TODO' eq ( shift->{directive} || '' ) } subroutine
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Result/
DTest.pm131 return $self->has_todo ? 1 : $self->ok !~ /not/;
181 return $self->has_todo && $self->is_actual_ok;
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/
DParser.pm1216 my $has_todo = $test->has_todo;
1218 $self->in_todo($has_todo);
1236 push @{ $self->{todo} } => $number if $has_todo;
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/Console/
DSession.pm54 { test => sub { $_->is_test && $_->has_todo },