I have a bunch attributes for my model post in my rspec test:
it { should respond_to(:title) }
it { should respond_to(:description) }
it { should respond_to(:instruction) }
.
.
.
Can I be more precise, use less lines in the test something like:
it { should respond_to(:title, :description, :instruction) }
The fix is in https://github.com/evansagge/mongoid-rspec :
Thank you @Beerlington