Last active
August 29, 2015 14:19
-
-
Save chris--young/2729b3fd9fb0df216dc4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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