A big issue with doing TDD is having fast test, or else running your tests will slow down your development cycle. One thing I always try to do is hit the database as less as possible, since what your testing is almost never directly related to the database itself.
This is easy enough to do by stubbing out the calls to model or ActiveRecord
code. On a real application though, you’ll usually have to authenticate users and/or do some kind of authorization. This too should not have to go through the database.
For authentication I’m using Devise and for authorization CanCan, and setting up a controller test on RSpec goes somewhat like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
1 2 3 4 5 6 |
|
With this setup you are logged in to devise as a user, and have a blank cancan ability object in which you can define the abilities needed for the purpose of the test.