class FilterTest::NonYieldingAroundFilterController

Public Instance Methods

index() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 504
def index
  render inline: "index"
end

Private Instance Methods

action_three() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 523
def action_three
  @filters << "action_three"
end
action_two() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 515
def action_two
  @filters << "action_two"
end
filter_one() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 510
def filter_one
  @filters ||= []
  @filters << "filter_one"
end
non_yielding_action() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 519
def non_yielding_action
  @filters << "it didn't yield"
end