Sha256: 998357f16dd5227e293c65fd8f6e52a01044ca5368f07352b7faf4a384d440e4
Contents?: true
Size: 367 Bytes
Versions: 36
Compression:
Stored size: 367 Bytes
Contents
# frozen_string_literal: true 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#{format('%<seconds>.3f', seconds: s)}s" end end end end
Version data entries
36 entries across 36 versions & 4 rubygems