1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/engine_test.rb

28 lines
591 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "abstract_unit"
2012-04-28 18:05:49 -04:00
class EngineTest < ActiveSupport::TestCase
test "reports routes as available only if they're actually present" do
2012-04-28 18:05:49 -04:00
engine = Class.new(Rails::Engine) do
def initialize(*args)
@routes = nil
super
end
end
assert_not_predicate engine, :routes?
2012-04-28 18:05:49 -04:00
end
def test_application_can_be_subclassed
klass = Class.new(Rails::Application) do
attr_reader :hello
def initialize
@hello = "world"
2014-08-07 19:03:09 -04:00
super
end
end
assert_equal "world", klass.instance.hello
end
2012-04-28 18:05:49 -04:00
end