class RuboCop::Cop::RSpec::RedundantAround

Remove redundant ‘around` hook.

@example

# bad
around do |example|
  example.run
end

# good