class Tryouts::CLI::VerboseFormatter

def separator(style = :light)

def separator(style = :light)
  case style
  when :heavy
    puts '=' * @line_width
  when :light
    puts '-' * @line_width
  when :dotted
    puts '.' * @line_width
  else # rubocop:disable Lint/DuplicateBranch
    puts '-' * @line_width
  end
end