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

Make sure that ActionController::Api can include helpers

Closes #28554
This commit is contained in:
Rafael Mendonça França 2017-03-27 19:51:21 -04:00
parent f76881750d
commit 84bfb81a62
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948

View file

@ -0,0 +1,26 @@
require "abstract_unit"
module ApiWithHelper
def my_helper
"helper"
end
end
class WithHelpersController < ActionController::API
include ActionController::Helpers
helper ApiWithHelper
def with_helpers
render plain: self.class.helpers.my_helper
end
end
class WithHelpersTest < ActionController::TestCase
tests WithHelpersController
def test_with_helpers
get :with_helpers
assert_equal "helper", response.body
end
end