module FlakyStats::Output

Public Instance Methods

heading(text) click to toggle source
# File lib/flaky_stats/output.rb, line 8
def heading(text)
  puts "\n\n"
  line
  puts text
end
line() click to toggle source
# File lib/flaky_stats/output.rb, line 4
def line
  puts "--------------------------------------------------------------------------------"
end