class FilterTest::ConditionalSkippingController
Public Instance Methods
change_password()
click to toggle source
# File actionpack/test/controller/filters_test.rb, line 297 def change_password render inline: "ran action" end
login()
click to toggle source
# File actionpack/test/controller/filters_test.rb, line 293 def login render inline: "ran action" end
Private Instance Methods
find_user()
click to toggle source
# File actionpack/test/controller/filters_test.rb, line 302 def find_user @ran_filter ||= [] @ran_filter << "find_user" end