Clear up test based on line number differences between the core and the
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / no_diag.t
1 #!/usr/bin/perl -w
2
3 use Test::More 'no_diag', tests => 2;
4
5 pass('foo');
6 diag('This should not be displayed');
7
8 is(Test::More->builder->no_diag, 1);