Abilities

 view release on metacpan or  search on metacpan

t/02-features.t  view on Meta::CPAN

#!perl

use lib 't/lib';
use TestManager;
use TestPlan;
use TestCustomer;
use Test::More tests => 14;

my $mg = TestManager->new;

my $pa = TestPlan->new(name => 'PA', features => ['ssl', ['storage', '5GB']], mg => $mg);
my $pb = TestPlan->new(name => 'PB', features => ['backups', ['storage', '10GB']], plans => ['PA'], mg => $mg);
my $pc = TestPlan->new(name => 'PC', features => ['backups', ['phone_support', '24hrs']], mg => $mg);

my $ca = TestCustomer->new(name => 'CA', plans => ['PA'], mg => $mg);
my $cb = TestCustomer->new(name => 'CB', plans => ['PB'], features => [['phone_support', '12h']], mg => $mg);
my $cc = TestCustomer->new(name => 'CC', plans => ['PC'], mg => $mg);
my $cd = TestCustomer->new(name => 'CD', features => [['storage', '200GB']], mg => $mg);

$mg->add_objects($pa, $pb, $pc);

ok($pa, 'Got PA');
ok($pb, 'Got PB');
ok($pc, 'Got PC');
ok($ca, 'Got CA');
ok($cb, 'Got CB');
ok($cc, 'Got CC');
ok($cd, 'Got CD');

ok($ca->in_plan('PA'), 'CA in PA');
ok(!$ca->in_plan('PB'), 'CA not in PB');
ok($cb->inherits_plan('PA'), 'CB inherits PA');
ok(!$cb->in_plan('PA'), 'CB not in PA');
ok($cc->in_plan('PC'), 'CC in PC');
ok(!$cc->inherits_plan('PB'), 'CC does not inherit PB');
ok(!$cd->in_plan('PA'), 'CD not in PA');

done_testing();



( run in 0.753 second using v1.01-cache-2.11-cpan-d8267643d1d )