TracksApp/tracks

View on GitHub
app/models/null_time.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NullTime
  include Comparable

  def <=>(another)
    -1 # any other Time object is always greater
  end
end