У меня есть следующий код
require 'test_helper'
class ApplicationControllerTest < ActionController::TestCase
test "should display the page in german" do
get :index
assert_response :success
# ...
request.env["HTTP_REFERER"] = :index
# ...
end
end
Если я запускаю этот функциональный тест рельсов с
$ rake test:functionals
Я получаю эту ошибку:
test_should_display_the_page_in_german(ApplicationControllerTest):
NameError: undefined local variable or method `request' for #<ApplicationControllerTest:0x1044c6d00>
Как я могу получить доступ к переменной "request"?