We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1178af commit 2f9dca7Copy full SHA for 2f9dca7
.gitignore
@@ -7,6 +7,7 @@
7
/gemfiles/.bundle/config
8
9
/_misc/
10
+/coverage/
11
/spec/dummy/db/*.sqlite3*
12
/spec/dummy/log/
13
/spec/dummy/storage/
Gemfile
@@ -31,6 +31,7 @@ gem 'cuprite'
31
gem 'rspec_junit_formatter'
32
gem 'rspec-rails'
33
gem 'rspec-retry'
34
+gem 'simplecov', require: false
35
36
# Linters
37
gem 'fasterer'
spec/rails_helper.rb
@@ -4,6 +4,9 @@
4
5
ENV['RAILS_ENV'] = 'test'
6
+require 'simplecov'
+SimpleCov.start 'rails'
+
require File.expand_path('dummy/config/environment.rb', __dir__)
abort('The Rails environment is running in production mode!') if Rails.env.production?
0 commit comments