1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
@test_unit
Feature:
Running unit tests without simplecov configuration
Background:
Given I'm working on the project "faked_project"
Scenario: No config at all
When I successfully run `bundle exec rake test`
Then no coverage report should have been generated
Scenario: Configured, but not started
Given SimpleCov for Test/Unit is configured with:
"""
require 'simplecov'
SimpleCov.configure do
add_filter 'somefilter'
end
"""
When I successfully run `bundle exec rake test`
Then no coverage report should have been generated
|