module NyanCatFormat::Verbose

Public Instance Methods

progress_lines() click to toggle source
Calls superclass method
# File lib/nyan_cat_format/verbose.rb, line 3
def progress_lines
  [
    format("%-#{terminal_width}s", finished? ? '' : "running: #{example_name}"),
  ].concat(super)
end