Skip to content

Commit

Permalink
test: require logger in test_helper
Browse files Browse the repository at this point in the history
Co-authored-by: Ariel Valentin <[email protected]>
  • Loading branch information
kaylareopelle and arielvalentin committed Jan 16, 2025
1 parent 8722b6a commit 809ebbb
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion instrumentation/action_mailer/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
%w[6.1.0 7.0.0 7.1.0].each do |version|
appraise "action_mailer-#{version}" do
gem 'rails', "~> #{version}"
gem 'logger'
end
end

Expand Down
1 change: 1 addition & 0 deletions instrumentation/action_mailer/test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

require 'logger'
require 'bundler/setup'
Bundler.require(:default, :development, :test)

Expand Down
1 change: 0 additions & 1 deletion instrumentation/action_pack/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
%w[6.1.0 7.0.0 7.1.0].each do |version|
appraise "rails-#{version}" do
gem 'rails', "~> #{version}"
gem 'logger'
end
end

Expand Down
1 change: 1 addition & 0 deletions instrumentation/action_pack/test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

require 'logger'
require 'bundler/setup'
Bundler.require(:default, :development, :test)

Expand Down
1 change: 0 additions & 1 deletion instrumentation/action_view/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
%w[6.1.0 7.0.0 7.1.0].each do |version|
appraise "action_view-#{version}" do
gem 'rails', "~> #{version}"
gem 'logger'
end
end

Expand Down
1 change: 1 addition & 0 deletions instrumentation/action_view/test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

require 'logger'
require 'bundler/setup'
Bundler.require(:default, :development, :test)

Expand Down
1 change: 0 additions & 1 deletion instrumentation/delayed_job/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
appraise "delayed_job_4.1-activejob-#{version}" do
gem 'delayed_job', '~> 4.1'
gem 'activejob', "~> #{version}"
gem 'logger'
end
end

Expand Down
1 change: 1 addition & 0 deletions instrumentation/delayed_job/test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

require 'logger'
require 'bundler/setup'
Bundler.require(:default, :development, :test)

Expand Down
1 change: 0 additions & 1 deletion instrumentation/rails/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
%w[6.1.0 7.0.0 7.1.0].each do |version|
appraise "rails-#{version}" do
gem 'rails', "~> #{version}"
gem 'logger'
end
end

Expand Down
1 change: 1 addition & 0 deletions instrumentation/rails/test/instrumentation/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

require 'logger'
require 'bundler/setup'
Bundler.require(:default, :development, :test)

Expand Down
1 change: 1 addition & 0 deletions instrumentation/rails/test/railtie/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
ENV['RACK_ENV'] = 'test'
ENV['RAILS_ENV'] = 'test'

require 'logger'
require 'bundler/setup'
Bundler.require(:default, :development, :test)

Expand Down

0 comments on commit 809ebbb

Please sign in to comment.