Created
May 4, 2012 19:25
-
-
Save dvandersluis/2597155 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
# See http://stackoverflow.com/questions/1987354/how-to-set-locale-default-url-options-for-functional-tests-rails/8920258#8920258 | |
class ActionController::TestCase | |
module Behavior | |
def process_with_default_locale(action, parameters = nil, session = nil, flash = nil, http_method = 'GET') | |
parameters = { :locale => "en" }.merge( parameters || {} ) | |
process_without_default_locale(action, parameters, session, flash, http_method) | |
end | |
alias_method_chain :process, :default_locale | |
end | |
end | |
class ActionView::TestCase::TestController | |
def default_url_options(options={}) | |
{ :locale => "en" } | |
end | |
end | |
class ActionDispatch::Routing::RouteSet | |
def default_url_options(options={}) | |
{ :locale => "en" } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment