Re: [Catalyst] How to handle role checking using a MockObject for Catalyst contexts

2012-08-22 Thread Robert Rothenberg
On 13/08/12 21:17 Wallace Reis wrote: On Aug 07, 2012, at 11:42 AM, Robert Rothenberg wrote: Personally, latterly, I've just been using Moose directly when I want to mock a class: Moose::Meta::Class-create(…. And I love MX::Declare syntax sugar over this. ;) Btw, there is another

Re: [Catalyst] How to handle role checking using a MockObject for Catalyst contexts

2012-08-13 Thread Wallace Reis
On Aug 07, 2012, at 11:42 AM, Robert Rothenberg wrote: Personally, latterly, I've just been using Moose directly when I want to mock a class: Moose::Meta::Class-create(…. And I love MX::Declare syntax sugar over this. ;) Btw, there is another useful module out there:

Re: [Catalyst] How to handle role checking using a MockObject for Catalyst contexts

2012-08-07 Thread Robert Rothenberg
On 06/08/12 18:36 Tomas Doran wrote: On 6 Aug 2012, at 15:56, Robert Rothenberg wrote: My application has a lot of tests scripts (and even some utility scripts) that create a Test::MockObject that imitates a Catalyst context. But it's largely a kluge, especially for handling

[Catalyst] How to handle role checking using a MockObject for Catalyst contexts

2012-08-06 Thread Robert Rothenberg
My application has a lot of tests scripts (and even some utility scripts) that create a Test::MockObject that imitates a Catalyst context. But it's largely a kluge, especially for handling authentication with things like $c-check_any_use_role(...) So, what are the best practices for

Re: [Catalyst] How to handle role checking using a MockObject for Catalyst contexts

2012-08-06 Thread Tomas Doran
On 6 Aug 2012, at 15:56, Robert Rothenberg wrote: My application has a lot of tests scripts (and even some utility scripts) that create a Test::MockObject that imitates a Catalyst context. But it's largely a kluge, especially for handling authentication with things like