The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More;
use_ok("RPG::Traveller::Person");

my $p;

{
    $p = RPG::Traveller::Person->new();
    ok( $p, "Instantiation of module" );
}

{
    $p->initUPP;
    ok(1);
}

{
    ok( $p->strength() > 0, "Strength initialized" );
}

{
    ok( $p->strength() > 0, "Strength initialized" );
}

{
    ok( $p->dexterity() > 0, "Dexterity initialized" );
}

{
    ok( $p->endurance() > 0, "Endurance initialized" );
}

{
    ok( $p->intelligence() > 0, "Intelligenc initialized" );
}

{
    ok( $p->education() > 0, "Education initialized" );
}

{
    ok( $p->social_standing() > 0, "Social Standing initialized" );
}

{
    ok( $p->age() == 18, "Age initialized" );
}

done_testing;