File: main-warn.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 (9 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
use strict;
use warnings;
use Test::More;
use Test::FailWarnings;

ok( 1,              "first test" );
ok( 1 + "lkadjaks", "add non-numeric" );

done_testing;