blob: ccd13897a21eedb49650384e2d7affb20a7ca58c (
plain) (
tree)
|
|
use Test::More tests => 2;
use Test::Exception;
BEGIN {
#----------------------------------------------------
# ImplementationA has a tweak() method
package My::Factory::ImplementationA;
use Moose;
has connection => (is => 'ro', isa => 'Str');
sub tweak { 1; }
#----------------------------------------------------
# ImplementationB doesn't have a tweak() method
package My::Factory::ImplementationB;
use Moose;
sub no_tweak { 1; }
#----------------------------------------------------
# Factory class, has _roles() method that defines
# the role(s) (My::Role) all implementations should satisfy
package My::Factory;
use MooseX::AbstractFactory;
implementation_does qw/My::Role/;
#----------------------------------------------------
# My::Role requires tweak()
package My::Role;
use Moose::Role;
requires 'tweak';
}
my $imp;
lives_ok {
$imp = My::Factory->create('ImplementationA',
{connection => 'Type1'});
}
"Factory->new() doesn't die with ImplementationA";
dies_ok {
$imp = My::Factory->create(
'ImplementationB',
{},
);
}
"Factory->new() dies with implementationB";
|