blob: ed154a7e15e0262928d6087725d1a7b4313e4af8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/perl -w
use Test::More 'no_diag';
plan 'skip_all' => "This test cannot be run with the current formatter"
unless Test::Builder->new->{Stack}->top->format->isa('Test::Builder::Formatter');
pass('foo');
diag('This should not be displayed');
is(Test::More->builder->no_diag, 1);
done_testing;
|