summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/gmt_spec.rb
blob: 840f59e0e84abc35c99be1d1fa1b74b449474df0 (plain)
1
2
3
4
5
6
7
8
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