mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
195 B
Ruby
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
|