1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
@test_unit @config @profiles
Feature:
In order to re-use SimpleCov settings across projects,
profiles can be defined that hold configuration settings
that can be loaded at once.
Background:
Given I'm working on the project "faked_project"
And SimpleCov for Test/Unit is configured with:
"""
require 'simplecov'
"""
Scenario: Defining and using a custom profile
Given a file named ".simplecov" with:
"""
SimpleCov.profiles.define 'custom_command' do
command_name "Profile Command"
end
SimpleCov.start do
load_profile 'test_frameworks'
load_profile 'custom_command'
end
"""
When I open the coverage report generated with `bundle exec rake test`
Then I should see "4 files in total."
And I should see "using Profile Command" within "#footer"
Scenario: Using existing profile in custom profile and supplying profile to start command
Given a file named ".simplecov" with:
"""
SimpleCov.profiles.define 'my_profile' do
load_profile 'test_frameworks'
command_name "My Profile"
end
SimpleCov.start 'my_profile'
"""
When I open the coverage report generated with `bundle exec rake test`
Then I should see "4 files in total."
And I should see "using My Profile" within "#footer"
|