Topic: rspec crud controllers
I've just started doing BDD and TDD with cucumber and rspec on a new Rails 3 project. It's a large project which has a lot of CRUD controllers which basically do the same thing.
I written my 270 lines of rspec to test all the CRUD for my first controller of many and now I'm thinking that I want to do the same again for the next controllers.
I came across this link to DRY up my rspec:
http://edspencer.net/2008/08/drying-up-
specs.html
Is there a common or better way to do this?