I'm trying to build some unit tests for testing my Rails helpers, but I can never remember how to access them. Annoying. Suggestions?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can do the same in RSpec as:
|
|||
|
In rails 3 you can do this (and in fact it's what the generator creates):
And of course the rspec variant above works in rails 3 too |
|||
|
|
|
Stolen from here: http://joakimandersson.se/archives/2006/10/05/test-your-rails-helpers/
[Stolen from Matt Darby, who also wrote in this thread.] You can do the same in RSpec as:
|
||||
|
|
|
This thread is kind of old, but I thought I'd reply with what I use:
|
|||
|
|
I just posted this answer on another thread asking the same question. I did the following in my project.
|
|||
|
|