I keep getting
@controller is nil: make sure you set it in your test's setup method.
When I run my tests. Any idea what this means?
|
I keep getting
When I run my tests. Any idea what this means? |
||||
|
|
|
when you inherit from ActionController::TestCase it infers the controller name from the test name if they do not match you have to use the So if you have
Then
|
||||
|
|
ErsatzRyan answer is correct, however there is a small typo. Instead of
it should be
otherwise you get an error: undefined method `response_body=' |
|||
|
|