Skip to content

Commit b5c29b4

Browse files
committed
fix indentation in features
1 parent dc754e4 commit b5c29b4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

features/method_coverage.feature

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ Feature:
1010
Given SimpleCov for RSpec is configured with:
1111
"""
1212
require 'simplecov'
13+
1314
SimpleCov.start do
14-
enable_coverage :method
15+
enable_coverage :method
1516
end
1617
"""
1718
When I open the coverage report generated with `bundle exec rspec spec`

features/step_definitions/simplecov_steps.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
steps %(
2323
Given a file named "#{framework_dir}/simplecov_config.rb" with:
2424
"""
25-
#{config_body}
25+
#{config_body.indent(6)}
2626
"""
2727
)
2828
end

0 commit comments

Comments
 (0)