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

use constant AUTOLOAD => 1;

is( AUTOLOAD(), 1, "AUTOLOAD turned into a constant" );

done_testing;