Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 11 down vote accepted

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 setup part of test to set it.

So if you have

class PostsControllerTest < ActionController::TestCase
  def test_index
    #assert something
  end
end

Then @controller is auto instantiated to PostsController, however, if this were not the case and you had a different name you would need a setup as such

class SomeTest < ActionController::TestCase
  def setup
    @controller = PostController.new
  end
end
share|improve this answer
thanks, you led me to the solution. I was using describe "UsersController" do.... I removed the quotes and it solved the problem (naming was the issue). – montrealmike Oct 12 '11 at 18:09

ErsatzRyan answer is correct, however there is a small typo. Instead of

@controller = PostController

it should be

@controller = PostController.new

otherwise you get an error: undefined method `response_body='

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.