aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/time/new_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/time/new_spec.rb')
-rw-r--r--spec/ruby/core/time/new_spec.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/ruby/core/time/new_spec.rb b/spec/ruby/core/time/new_spec.rb
index a5cfa2a7df..064e03f056 100644
--- a/spec/ruby/core/time/new_spec.rb
+++ b/spec/ruby/core/time/new_spec.rb
@@ -121,7 +121,7 @@ describe "Time.new with a utc_offset argument" do
end
end
-ruby_version_is "2.6" do
+ruby_version_is "2.7" do
describe "Time.new with a timezone argument" do
it "returns a Time in the timezone" do
zone = TimeSpecs::Timezone.new(offset: (5*3600+30*60))
@@ -129,6 +129,10 @@ ruby_version_is "2.6" do
time.zone.should == zone
time.utc_offset.should == 5*3600+30*60
+ ruby_version_is "2.7" do
+ time.wday.should == 6
+ time.yday.should == 1
+ end
end
it "accepts timezone argument that must have #local_to_utc and #utc_to_local methods" do