newcontext-oss/kitchen-terraform

View on GitHub
lib/kitchen/terraform/provisioner/converge.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

Kitchen::Terraform::Provisioner::Converge#initialize has 6 parameters
Open

        def initialize(config:, connection:, debug_connection:, logger:, version_requirement:, workspace_name:)

A Long Parameter List occurs when a method has a lot of parameters.

Example

Given

class Dummy
  def long_list(foo,bar,baz,fling,flung)
    puts foo,bar,baz,fling,flung
  end
end

Reek would report the following warning:

test.rb -- 1 warning:
  [2]:Dummy#long_list has 5 parameters (LongParameterList)

A common solution to this problem would be the introduction of parameter objects.

There are no issues that match your filters.

Category
Status