File: 01_compile.t

package info (click to toggle)
libtest-nowarnings-perl 1.06-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 158; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;

use Test::More tests => 4;

require_ok( 'Test::NoWarnings' );
ok( $Test::NoWarnings::VERSION, 'Loaded Test::NoWarnings' );
ok( $Test::NoWarnings::Warning::VERSION, 'Loaded Test::NoWarnings::Warning' );
is(
    $Test::NoWarnings::VERSION,
    $Test::NoWarnings::Warning::VERSION,
    'Loaded matching Test::NoWarnings::Warning',
);