@rspec Feature: Running specs without simplecov configuration Scenario: No config at all When I successfully run `bundle exec rspec spec` Then no coverage report should have been generated Scenario: Configured, but not started Given SimpleCov for RSpec is configured with: """ require 'simplecov' SimpleCov.configure do add_filter 'somefilter' end """ When I successfully run `bundle exec rspec spec` Then no coverage report should have been generated