1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Fix failure_app failing test.

This commit is contained in:
José Valim 2011-11-07 21:38:31 -02:00
parent 58d61c290a
commit 22136a708b
4 changed files with 5 additions and 12 deletions

View file

@ -100,10 +100,6 @@ module Devise
"/#{@path_prefix}/#{@path}".squeeze("/")
end
def failure_app
Devise::FailureApp
end
# Create magic predicates for verifying what module is activated by this map.
# Example:
#

View file

@ -202,9 +202,7 @@ class AuthenticationSanityTest < ActionController::IntegrationTest
end
test 'scope uses custom failure app' do
app = lambda { |env| [404, {"Content-Type" => "text/plain"}, ["Oops, not found"]] }
Devise.mappings[:admin].expects(:failure_app).returns(app)
get admins_path
put "/en/accounts/management"
assert_equal "Oops, not found", response.body
assert_equal 404, response.status
end

View file

@ -11,7 +11,6 @@ RailsApp::Application.configure do
# Show full error reports and disable caching
config.consider_all_requests_local = true
config.action_view.debug_rjs = true
config.action_controller.perform_caching = false
# Don't care if the mailer can't send

View file

@ -71,7 +71,7 @@ Rails.application.routes.draw do
:password => "secret", :confirmation => "verification",
:unlock => "unblock", :sign_up => "register",
:registration => "management", :cancel => "giveup"
}
}, :failure_app => lambda { |env| [404, {"Content-Type" => "text/plain"}, ["Oops, not found"]] }
end
namespace :sign_out_via, :module => "devise" do