Test Moose Constructor
use strict;
use warnings;
use v5.10;
use Test::More tests => 1;
use Person;
my $p = Person->new;
isa_ok($p, 'Person');
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
use strict;
use warnings;
use v5.10;
use Test::More tests => 1;
use Person;
my $p = Person->new;
isa_ok($p, 'Person');