lib/nyan_cat_format/verbose.rb



module NyanCatFormat
  module Verbose
    def progress_lines
      [
        format("%-#{terminal_width}s", finished? ? '' : "running: #{example_name}"),
      ].concat(super)
    end

  end
end