We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In my template to get minitest working I'm just doing these 2 steps.
Add this to my gemfile:
gem_group :development, :test do gem 'minitest' gem 'minitest-rails' end
Add this to my application.rb to turn on specs and disable helper tests being created by scaffolding.
application %Q( config.generators do |g| g.test_framework :minitest, spec: true, fixture: true g.helper false g.view_specs false end )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In my template to get minitest working I'm just doing these 2 steps.
Add this to my gemfile:
Add this to my application.rb to turn on specs and disable helper tests being created by scaffolding.
The text was updated successfully, but these errors were encountered: