Methods
A
S
T
Constants
Routes = ActionDispatch::Routing::RouteSet.new
 
Instance Public methods
app()
# File actionmailer/test/i18n_with_controller_test.rb, line 30
def app
  Routes
end
setup()
# File actionmailer/test/i18n_with_controller_test.rb, line 34
def setup
  I18n.backend.store_translations('de', :email_subject => '[Signed up] Welcome')
end
teardown()
# File actionmailer/test/i18n_with_controller_test.rb, line 38
def teardown
  I18n.locale = :en
end
test_send_mail()
# File actionmailer/test/i18n_with_controller_test.rb, line 42
def test_send_mail
  get '/test/send_mail'
  assert_equal "Mail sent", @response.body
end