ollie/duration_estimate

View on GitHub
lib/duration_estimate/null_time.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DurationEstimate
  # Null Object Pattern for nil time.
  class NullTime
    # Be able to call strftime on nil time.
    #
    # @return [String]
    def strftime(*_args)
      '-'
    end
  end
end