File: warn-newline.pl

package info (click to toggle)
libtest-failwarnings-perl 0.8-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 207; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 203 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
use strict;
use warnings;
use Test::More;
use Test::FailWarnings;
use lib 't/lib';
use Noisy;

ok( 1,                     "first test" );
ok( Noisy::with_newline(), "call with_newline" );

done_testing;