cubesystems/releaf

View on GitHub
lib/releaf/rspec/matchers/cache_instance_method.rb

Summary

Maintainability
A
0 mins
Test Coverage

Unused block argument - actual. You can omit the argument if you don't care about it.
Open

  match do |actual|

This cop checks for unused block arguments.

Example:

# bad

do_something do |used, unused|
  puts used
end

do_something do |bar|
  puts :foo
end

define_method(:foo) do |bar|
  puts :baz
end

Example:

#good

do_something do |used, _unused|
  puts used
end

do_something do
  puts :foo
end

define_method(:foo) do |_bar|
  puts :baz
end

There are no issues that match your filters.

Category
Status