Re: [rspec-users] reusable specs - almost there

2007-08-05 Thread David Chelimsky
On 8/4/07, David Green [EMAIL PROTECTED] wrote: I have a lot of controllers with virtually identical functionality for most actions. I've been using shared behaviours to DRY things up a bit, but I still have to create separate behaviours for each context before I can use the shared behaviours

Re: [rspec-users] reusable specs - almost there

2007-08-05 Thread Pat Maddox
I agree with David, I think this is too much magic. You'll often have more duplication in specs than you will in production code. That's not a bad thing though, because specs need to be explicit about the behavior being performed. Duplication doesn't lead to the same mistakes that it does in

[rspec-users] reusable specs - almost there

2007-08-04 Thread David Green
I have a lot of controllers with virtually identical functionality for most actions. I've been using shared behaviours to DRY things up a bit, but I still have to create separate behaviours for each context before I can use the shared behaviours what I have now is a generic file which contains