class RuboCop::Cop::Style::MagicCommentFormat

def wrong_capitalization?(text, expected_case)

def wrong_capitalization?(text, expected_case)
  return false unless expected_case
  case expected_case
  when :lowercase
    text != text.downcase
  when :uppercase
    text != text.upcase
  end
end