class FilterTest::ConditionalFilterController

Public Instance Methods

another_action() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 141
def another_action
  render inline: "ran action"
end
show() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 137
def show
  render inline: "ran action"
end
show_without_action() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 145
def show_without_action
  render inline: "ran action without action"
end

Private Instance Methods

clean_up_tmp() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 155
def clean_up_tmp
  @ran_filter ||= []
  @ran_filter << "clean_up_tmp"
end
ensure_login() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 150
def ensure_login
  @ran_filter ||= []
  @ran_filter << "ensure_login"
end