DEBSOURCES
Skip Quicknav
sources / libgraph-perl / 1%3A0.96-2 / t / 01_isa.t
1234567891011
use Test::More tests => 2; use Graph; my $g = Graph->new; isa_ok($g, 'Graph'); my $h = $g->new; isa_ok($g, 'Graph');