mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
parent
f76881750d
commit
84bfb81a62
1 changed files with 26 additions and 0 deletions
26
actionpack/test/controller/api/with_helpers_test.rb
Normal file
26
actionpack/test/controller/api/with_helpers_test.rb
Normal 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
|
Loading…
Reference in a new issue