Sha256: b87dbc66f3e148c9bae31968f7352064032a36cb8a76a1df381f7af91e4f8b8d
Contents?: true
Size: 311 Bytes
Versions: 51
Compression:
Stored size: 311 Bytes
Contents
module Cucumber module Formatter module Duration # Helper method for formatters that need to # format a duration in seconds to the UNIX # <tt>time</tt> format. def format_duration(seconds) m, s = seconds.divmod(60) "#{m}m#{'%.3f' % s}s" end end end end
Version data entries
51 entries across 49 versions & 3 rubygems