1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/time/gmt_spec.rb
2020-05-03 12:28:29 +02:00

8 lines
195 B
Ruby

require_relative '../../spec_helper'
describe "Time#gmt?" do
it "returns true if time represents a time in UTC (GMT)" do
Time.now.should_not.gmt?
Time.now.gmtime.should.gmt?
end
end