1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Module lookup issue on flash_test using ruby 1.9 solved [#3716 status:resolved]

Signed-off-by: José Valim <jose.valim@gmail.com>
This commit is contained in:
Sam Elliott and Santiago Pastorino 2010-01-17 01:39:30 -02:00 committed by José Valim
parent eb67532bc1
commit 5a6596787b

View file

@ -220,7 +220,7 @@ class FlashIntegrationTest < ActionController::IntegrationTest
def with_test_route_set
with_routing do |set|
set.draw do |map|
match ':action', :to => ActionDispatch::Session::CookieStore.new(TestController, :key => SessionKey, :secret => SessionSecret)
match ':action', :to => ActionDispatch::Session::CookieStore.new(FlashIntegrationTest::TestController, :key => FlashIntegrationTest::SessionKey, :secret => FlashIntegrationTest::SessionSecret)
end
yield
end