mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
mounted helpers should be included in ActionMailer
This commit is contained in:
parent
2734d3819f
commit
8fdeff0fa5
2 changed files with 3 additions and 1 deletions
|
@ -19,8 +19,9 @@ module ActionMailer
|
|||
|
||||
ActiveSupport.on_load(:action_mailer) do
|
||||
include app.routes.url_helpers
|
||||
include app.routes.mounted_helpers(:app)
|
||||
options.each { |k,v| send("#{k}=", v) }
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -61,6 +61,7 @@ module ApplicationTests
|
|||
|
||||
require "#{app_path}/config/environment"
|
||||
assert Foo.method_defined?(:foo_path)
|
||||
assert Foo.method_defined?(:app)
|
||||
assert_equal ["notify"], Foo.action_methods
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue