Sha256: 19885c40b55804c0475b51d7e82ba967cdf80816ac99040dc3f2d54d713948e6
Contents?: true
Size: 986 Bytes
Versions: 64
Compression:
Stored size: 986 Bytes
Contents
@test_unit @config Feature: The output directory for test coverage can be customized with the SimpleCov.coverage_dir setting. All coverage reports will be put there instead of the default 'coverage' directory in your project's root. Scenario: Given SimpleCov for Test/Unit is configured with: """ require 'simplecov' SimpleCov.start do coverage_dir 'test/simplecov' end """ When I successfully run `bundle exec rake test` Then a coverage report should have been generated in "test/simplecov" And a directory named "coverage" should not exist Scenario: Given SimpleCov for Test/Unit is configured with: """ require 'simplecov' SimpleCov.start do coverage_dir '/tmp/test/simplecov' end """ When I successfully run `bundle exec rake test` Then a coverage report should have been generated in "/tmp/test/simplecov" And a directory named "coverage" should not exist
Version data entries
64 entries across 63 versions & 14 rubygems