class ViewLoadPathsTest::TestController
Public Class Methods
controller_path()
click to toggle source
# File actionview/test/actionpack/controller/view_paths_test.rb, line 7 def self.controller_path() "test" end
Public Instance Methods
hello_world()
click to toggle source
# File actionview/test/actionpack/controller/view_paths_test.rb, line 11 def hello_world() end
hello_world_at_request_time()
click to toggle source
# File actionview/test/actionpack/controller/view_paths_test.rb, line 12 def hello_world_at_request_time() render(action: "hello_world") end
Private Instance Methods
add_view_path()
click to toggle source
# File actionview/test/actionpack/controller/view_paths_test.rb, line 15 def add_view_path prepend_view_path "#{FIXTURE_LOAD_PATH}/override" end