Skip to content

Instantly share code, notes, and snippets.

@chris--young
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris--young/2729b3fd9fb0df216dc4 to your computer and use it in GitHub Desktop.
Save chris--young/2729b3fd9fb0df216dc4 to your computer and use it in GitHub Desktop.
require 'test_helper'
class IndependentMatcheesControllerTest < ActionController::TestCase
# Without this method I get...
# RuntimeError: @controller is nil: make sure you set it in your test's setup method.
# test/controllers/independent_matchees_controller_test.rb:15:in `block in <class:IndependentMatcheesControllerTest>'
# With it I get...
# NameError: uninitialized constant IndependentMatcheesControllerTest::IndependentMatcheesController
# test/controllers/independent_matchees_controller_test.rb:11:in `setup'
def setup
@controller = IndependentMatcheesController.create
end
test "should get index" do
get :index
assert_response :success
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment