Methods
N
T
Class Public methods
new(*args)
# File railties/test/engine_test.rb, line 6
def initialize(*args)
  @routes = nil
  super
end
Instance Public methods
test_application_can_be_subclassed()
# File railties/test/engine_test.rb, line 15
def test_application_can_be_subclassed
  klass = Class.new(Rails::Application) do
    attr_reader :hello
    def initialize
      @hello = "world"
      super
    end
  end
  assert_equal "world", klass.instance.hello
end