Skip to content

Commit 70984c1

Browse files
authored
Fix RuboCop offenses in rails_helper.rb template (#2663)
* Use slashes on Rails.root.join
1 parent 03601af commit 70984c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/generators/rspec/install/templates/spec/rails_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# directory. Alternatively, in the individual `*_spec.rb` files, manually
2121
# require only the support files necessary.
2222
#
23-
# Dir[Rails.root.join('spec', 'support', '**', '*.rb')].sort.each { |f| require f }
23+
# Dir[Rails.root.join('spec/support/**/*.rb')].sort.each { |f| require f }
2424

2525
<% if RSpec::Rails::FeatureCheck.has_active_record_migration? -%>
2626
# Checks for pending migrations and applies them before tests are run.

0 commit comments

Comments
 (0)