Sha256: 3eab1cb35d47b2073a28a6b042a257941485f75e721ec7495543062a8dfc8c29
Contents?: true
Size: 1.8 KB
Versions: 2
Compression:
Stored size: 1.8 KB
Contents
Feature: RubyCritic can be run via Rake task In order to allow for a better CI usage As a developer I want to use RubyCritic as a Rake task Scenario: ‘paths' attribute is respected Given the smelly file 'smelly.rb' When I run rake rubycritic with: """ RubyCritic::RakeTask.new do |t| t.paths = FileList['smelly.*'] t.options = '--no-browser -f console' end """ Then the output should contain: """ (HighComplexity) AllTheMethods#method_missing has a flog score of 27 """ And the exit status indicates a success Scenario: 'name' option changes the task name Given the smelly file 'smelly.rb' When I run rake silky with: """ RubyCritic::RakeTask.new('silky') do |t| t.paths = FileList['smelly.*'] t.verbose = true t.options = '--no-browser' end """ Then the output should contain: """ Running `silky` rake command """ Scenario: 'verbose' prints details about the execution Given the smelly file 'smelly.rb' When I run rake rubycritic with: """ RubyCritic::RakeTask.new do |t| t.paths = FileList['smelly.*'] t.verbose = true t.options = '--no-browser' end """ Then the output should contain: """ !!! Running `rubycritic` rake command !!! Inspecting smelly.rb with options --no-browser """ Scenario: respect --minimum-score Given the smelly file 'smelly.rb' When I run rake rubycritic with: """ RubyCritic::RakeTask.new do |t| t.paths = FileList['smelly.*'] t.verbose = true t.options = '--no-browser -f console --minimum-score 95' end """ Then the output should contain: """ Score (93.19) is below the minimum 95 """
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubycritic-3.4.0 | features/rake_task.feature |
rubycritic-3.3.0 | features/rake_task.feature |