ashirahattia/cs169-pgm

View on GitHub
features/support/paths.rb

Summary

Maintainability
A
0 mins
Test Coverage

Cyclomatic complexity for path_to is too high. [8/6]
Open

  def path_to(page_name)
    case page_name

      when /^the home\s?page$/
        '/'
Severity: Minor
Found in features/support/paths.rb by rubocop

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

There are no issues that match your filters.

Category
Status