class AbstractController::Testing::OverridingLocalPrefixes

Public Class Methods

local_prefixes() click to toggle source
Calls superclass method
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 163
def self.local_prefixes
  # this would usually return "abstract_controller/testing/overriding_local_prefixes"
  super + ["abstract_controller/testing/me3"]
end

Public Instance Methods

index() click to toggle source
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 159
def index
  render
end