mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3908d5d330
* test/rake: ditto. * NEWS: ditto. * test/lib/minitest/unit.rb: Add compatibility shim for minitest 5. This only provides minitest 5 unit test naming compatibility. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48560 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
265 B
Ruby
17 lines
265 B
Ruby
module Rake
|
|
# LateTime is a fake timestamp that occurs _after_ any other time value.
|
|
class LateTime
|
|
include Comparable
|
|
include Singleton
|
|
|
|
def <=>(other)
|
|
1
|
|
end
|
|
|
|
def to_s
|
|
'<LATE TIME>'
|
|
end
|
|
end
|
|
|
|
LATE = LateTime.instance
|
|
end
|