░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/canvas_ext/spec/canvas_ext
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: date_spec.rb
# frozen_string_literal: true # # Copyright (C) 2011 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. # require "spec_helper" describe "Date#in_time_zone" do before do @zones = ["America/Juneau", "America/Denver", "UTC", "Asia/Baghdad", "Asia/Shanghai"].map { |tzname| ActiveSupport::TimeZone.new(tzname) } today = Time.zone.now @dates = [ Date.parse("#{today.year}-01-01"), Date.parse("#{today.year}-07-01") ] end it "gives midnight regardless of time zone" do @dates.each do |date| @zones.each do |tz| time_in_tz = date.in_time_zone(tz.name) expect(time_in_tz.hour).to eq 0 expect(time_in_tz.min).to eq 0 expect(time_in_tz.sec).to eq 0 expect(time_in_tz.utc_offset).to eq tz.tzinfo.period_for_local(time_in_tz).utc_total_offset end end end it "gives the same date regardless of time zone" do @dates.each do |date| @zones.each do |tz| time_in_tz = date.in_time_zone(tz.name) expect(time_in_tz.year).to eq date.year expect(time_in_tz.month).to eq date.month expect(time_in_tz.day).to eq date.day expect(time_in_tz.utc_offset).to eq tz.tzinfo.period_for_local(time_in_tz).utc_total_offset end end end it "works with no explicit zone given" do @dates.each do |date| tz = @zones.first Time.use_zone(tz) do time_in_tz = date.in_time_zone expect(time_in_tz.hour).to eq 0 expect(time_in_tz.min).to eq 0 expect(time_in_tz.sec).to eq 0 expect(time_in_tz.utc_offset).to eq tz.tzinfo.period_for_local(time_in_tz).utc_total_offset end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 array_spec.rb
RB
892 B
2023-09-24 03:36
EDIT
📄 date_spec.rb
RB
2.2 KB
2023-09-24 03:36
EDIT
📄 marshal_spec.rb
RB
1.2 KB
2023-09-24 03:36
EDIT
📄 object_spec.rb
RB
1.2 KB
2023-09-24 03:36
EDIT