Functional tests now work properly, bearing in mind whether a user is logged in or...
[depot.git] / Etc / UTC.rb
1 require 'tzinfo/timezone_definition'
2
3 module TZInfo
4 module Definitions
5 module Etc
6 module UTC
7 include TimezoneDefinition
8
9 timezone 'Etc/UTC' do |tz|
10 tz.offset :o0, 0, 0, :UTC
11
12 end
13 end
14 end
15 end
16 end