—use
strict;
use
warnings;
use
Test::More;
=pod
This just makes sure that the Bar gets
a metaclass initialized for it correctly.
=cut
{
}
my
$bar
= Bar->new;
isa_ok(
$bar
,
'Bar'
);
isa_ok(
$bar
,
'Foo'
);
done_testing;
—use
strict;
use
warnings;
use
Test::More;
=pod
This just makes sure that the Bar gets
a metaclass initialized for it correctly.
=cut
{
}
my
$bar
= Bar->new;
isa_ok(
$bar
,
'Bar'
);
isa_ok(
$bar
,
'Foo'
);
done_testing;