Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rspec rails_helper does not correctly load support files in gem projects #1

Open
dan-drew opened this issue Jan 31, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@dan-drew
Copy link
Collaborator

Dir[Rails.root.join('spec/support/**/*.rb')].sort.each { |f| require f }

This line uses Rails.root to construct the path to the support folder. In gem projects, this is actually the spec/dummy subfolder vs. the root of the gem project.

Change to use __dir__ instead as the base directory

Dir[File.join(__dir__, 'support/**/*.rb')].sort.each { |f| require f }
@dan-drew dan-drew added the bug Something isn't working label Jan 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant