File: lazy_load_for_storable.t

package info (click to toggle)
libhttp-headers-fast-perl 0.22-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 176 kB
  • sloc: perl: 1,036; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;
use Test::More;
BEGIN {
    if ($INC{"Storable.pm"}) {
        plan skip_all => "Storable is already loaded by toolchain";
    }
}
use HTTP::Headers::Fast;

plan tests => 1;

is $INC{'Storable.pm'}, undef;