vote up 7 vote down star
2

What strategies have Perl people used when mocking Moose objects that they will inject into other Moose objects as type-constrained attributes?

Test::MockObject::Extends doesn't seem to play well with Moose. I need the object to blessed as a specific package though so a vanilla Test::MockObject won't work. I'm sure other folks have had similar difficulty. How did you resolve it?

Extra Points for Solutions that are already on CPAN.

flag
Not sure what the policy of answering your own question is but I found <a href="search.cpan.org/~dexter/Test-Mock-Class-0.03/…; on CPAN which works pretty well. So I'm posting it here in the comments. – Jeremy Wall Sep 3 at 0:42
hrmmm whoops: Test::Mock::Class search.cpan.org/~dexter/Test-Mock-Class-0.03/… – Jeremy Wall Sep 3 at 0:42
1  
"You call that an object? That's laughable, my grandmother could make a better object than that. You'll never amount to anything, Moose!" :-P – j_random_hacker Sep 3 at 9:55
"Listen, Moose, you think you're big? A Mouse would scare you..." – Paul Nathan Sep 12 at 3:28
@j_random_hacker: A friend of mine once included Acme::MockObject::Mercilessly on a list of "rejected module names" :) – hobbs Sep 15 at 6:07

1 Answer

vote up 3 vote down check

Well I'm not the expert on such things but the first thing I'd look at is Shaw Moore's (Sartak) Test-MockOO.

If this doesn't work for you, I'd then look at using the power of the Metaobject Protocol and starrt manually building Mock objects. Look at Class::MOP::Class and Moose::Meta::Class for how to override specific methods and/or create entire classes at runtime programatically.

If this still doesn't work for you, I'd swing past IRC and ask. The moose hevy hitters hang out there and I'm sure one of them has run into this situation.

link|flag
2  
If that Module was already on CPAN I'd give you the checkmark. It looks like it would do the job. – Jeremy Wall Sep 3 at 0:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.