class DurationEstimate::NullTime

Null Object Pattern for nil time.

Public Instance Methods

strftime(*_args) click to toggle source

Be able to call strftime on nil time.

@return [String]

# File lib/duration_estimate/null_time.rb, line 7
def strftime(*_args)
  '-'
end