mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix some railties test warnings
This commit is contained in:
parent
db924e1257
commit
2282964de7
2 changed files with 3 additions and 4 deletions
|
@ -53,10 +53,9 @@ module ActiveSupport
|
|||
|
||||
class << self
|
||||
def logger
|
||||
if defined?(Rails) && Rails.respond_to?(:logger)
|
||||
@logger ||= Rails.logger
|
||||
@logger ||= if defined?(Rails) && Rails.respond_to?(:logger)
|
||||
Rails.logger
|
||||
end
|
||||
@logger
|
||||
end
|
||||
|
||||
attr_writer :logger
|
||||
|
|
|
@ -124,7 +124,7 @@ class PluginNewGeneratorTest < Rails::Generators::TestCase
|
|||
run_generator [destination_root, "--skip_active_record"]
|
||||
assert_no_file "test/dummy/config/database.yml"
|
||||
assert_file "test/test_helper.rb" do |contents|
|
||||
assert_no_match /ActiveRecord/, contents
|
||||
assert_no_match(/ActiveRecord/, contents)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue