File: 02-isa.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-- 278 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;
use Test::More;
use HTTP::Headers::Fast;
plan tests => 5;

my $h = HTTP::Headers::Fast->new();
isa_ok $h, 'HTTP::Headers';
isa_ok $h, 'HTTP::Headers::Fast';
ok $h->isa('HTTP::Headers');
ok $h->isa('HTTP::Headers::Fast');
ok ! $h->isa('Acme::Acotie');