Prevent a redefinition warning when the real Rails.root appears

This commit is contained in:
Matthew Draper 2017-05-26 15:22:57 +09:30
parent 4cfcf1ee54
commit 85efa3a2cf

@ -7,11 +7,12 @@
require "rails/test_unit/line_filtering"
require "active_support/test_case"
module Rails
class << Rails
# Necessary to get rerun-snippts working.
def self.root
def root
@root ||= Pathname.new(COMPONENT_ROOT)
end
alias __root root
end
ActiveSupport::TestCase.extend Rails::LineFiltering