When I add a new model under my models folder, but don't add the spec, then run bundle exec rspec, SimpleCov still shows 100% coverage.
Method: SimpleCov::Configuration#track_files. Defined in: lib/simplecov/ configuration.rb. permalink #track_files(glob) ⇒ Object. Coverage results will always ...
I add track_files '{app,lib}/**/*.rb' in my SimpleCov.start and it recognize mys files, but don't calculate the coverage rate. enter image description ...
... analysis that this usage [1]: SimpleCov.start do add_filter 'lib/some/file/to/ignore .rb' track_files '{app,lib}/**/*' results in a coverage report that .
The root for the project. #track_files(glob) ⇒ Object. Coverage results will always include files matched by this glob, whether or not they ...
Simplecov.track_files. is the answer. See the example snippet below. Ruby. SimpleCov.start do # e.g., usage of track files track_files "/app/**/*.rb" end. Updated ...
pid = $$ , SimpleCov.track_files and almost every other remotely related configuration I found. I do not wish to use Aruba, although I have tried ...
There is no track_files method in current version. Environment: Redmine version 3.3.3.stable. Ruby version 2.3.1-p112 (2016-04-26) ...
src", __FILE__) SimpleCov.track_files("#{src_location}/**/*.rb") # use coveralls for on-line code coverage reporting at Travis CI if ENV["TRAVIS"] require ...
simplecov file with configuration: SimpleCov.start do track_files 'lib/**/*.rb' ...