class FilterTest::MixedSpecializationController

Public Instance Methods

bar() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 429
def bar
  render plain: "bar"
end
foo() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 425
def foo
  render plain: "foo"
end

Private Instance Methods

first() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 434
def first
  @first = true
end
second() click to toggle source
# File actionpack/test/controller/filters_test.rb, line 438
def second
  raise OutOfOrder unless @first
end