fga-gpp-mds/2017.1-OndeE-UnB

View on GitHub
darcyWeb/lib/tasks/cucumber.rake

Summary

Maintainability
Test Coverage

Block has too many lines. [30/25]
Open

    namespace :cucumber do
      Cucumber::Rake::Task.new({ ok: 'test:prepare' }, 'Run features that should pass') do |t|
        t.binary = vendored_cucumber_bin # If nil, the gem's binary is used.
        t.fork = true # You may get faster startup if you set this to false
        t.profile = 'default'
Severity: Minor
Found in darcyWeb/lib/tasks/cucumber.rake by rubocop

This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

Use %i or %I for an array of symbols.
Open

      task all: [:ok, :wip]
Severity: Minor
Found in darcyWeb/lib/tasks/cucumber.rake by rubocop

This cop can check for array literals made up of symbols that are not using the %i() syntax.

Alternatively, it checks for symbol arrays using the %i() syntax on projects which do not want to use that syntax.

Configuration option: MinSize If set, arrays with fewer elements than this value will not trigger the cop. For example, a MinSize of3` will not enforce a style on an array of 2 or fewer elements.

Example: EnforcedStyle: percent (default)

# good
%i[foo bar baz]

# bad
[:foo, :bar, :baz]

Example: EnforcedStyle: brackets

# good
[:foo, :bar, :baz]

# bad
%i[foo bar baz]

Line is too long. [122/100]
Open

      Cucumber::Rake::Task.new({ rerun: 'test:prepare' }, 'Record failing features and run only them if any exist') do |t|
Severity: Minor
Found in darcyWeb/lib/tasks/cucumber.rake by rubocop

Line is too long. [103/100]
Open

  $LOAD_PATH.unshift(File.dirname(vendored_cucumber_bin) + '/../lib') unless vendored_cucumber_bin.nil?
Severity: Minor
Found in darcyWeb/lib/tasks/cucumber.rake by rubocop

Line is too long. [109/100]
Open

    # In case we don't have the generic Rails test:prepare hook, append a no-op task that we can depend upon.
Severity: Minor
Found in darcyWeb/lib/tasks/cucumber.rake by rubocop

Line is too long. [103/100]
Open

      Cucumber::Rake::Task.new({ wip: 'test:prepare' }, 'Run features that are being worked on') do |t|
Severity: Minor
Found in darcyWeb/lib/tasks/cucumber.rake by rubocop

%w-literals should be delimited by [ and ].
Open

        ::STATS_DIRECTORIES << %w(Cucumber\ features features) if File.exist?('features')
Severity: Minor
Found in darcyWeb/lib/tasks/cucumber.rake by rubocop

This cop enforces the consistent usage of %-literal delimiters.

Specify the 'default' key to set all preferred delimiters at once. You can continue to specify individual preferred delimiters to override the default.

Example:

# Style/PercentLiteralDelimiters:
#   PreferredDelimiters:
#     default: '[]'
#     '%i':    '()'

# good
%w[alpha beta] + %i(gamma delta)

# bad
%W(alpha #{beta})

# bad
%I(alpha beta)

There are no issues that match your filters.

Category
Status