7
votes
How do you run a single test/spec file in RSpec?
Or you can skip rake and use the 'spec' command:
spec path/to/spec/file.rb
In your case I think as long as your ./spec/db_spec.rb file includes the appropriate hel …
3
votes
How do I test Rails block helpers with rSpec
To add just a bit to what James said, I think something like this should work just fine:
describe SomeHelper do
it 'should do something' do
helper.some_block_helper { the_bloc …
