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