summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/strftime_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/time/strftime_spec.rb')
-rw-r--r--spec/ruby/core/time/strftime_spec.rb62
1 files changed, 30 insertions, 32 deletions
diff --git a/spec/ruby/core/time/strftime_spec.rb b/spec/ruby/core/time/strftime_spec.rb
index 4cb300c916..1528a668a1 100644
--- a/spec/ruby/core/time/strftime_spec.rb
+++ b/spec/ruby/core/time/strftime_spec.rb
@@ -25,7 +25,7 @@ describe "Time#strftime" do
# Differences with date
it "requires an argument" do
- -> { @time.strftime }.should raise_error(ArgumentError)
+ -> { @time.strftime }.should.raise(ArgumentError)
end
# %Z is zone name or empty for Time
@@ -50,44 +50,42 @@ describe "Time#strftime" do
time.strftime("%::z").should == "+01:01:05"
end
- ruby_version_is "3.1" do
- it "supports RFC 3339 UTC for unknown offset local time, -0000, as %-z" do
- time = Time.gm(2022)
+ it "supports RFC 3339 UTC for unknown offset local time, -0000, as %-z" do
+ time = Time.gm(2022)
- time.strftime("%z").should == "+0000"
- time.strftime("%-z").should == "-0000"
- time.strftime("%-:z").should == "-00:00"
- time.strftime("%-::z").should == "-00:00:00"
- end
+ time.strftime("%z").should == "+0000"
+ time.strftime("%-z").should == "-0000"
+ time.strftime("%-:z").should == "-00:00"
+ time.strftime("%-::z").should == "-00:00:00"
+ end
- it "applies '-' flag to UTC time" do
- time = Time.utc(2022)
- time.strftime("%-z").should == "-0000"
+ it "applies '-' flag to UTC time" do
+ time = Time.utc(2022)
+ time.strftime("%-z").should == "-0000"
- time = Time.gm(2022)
- time.strftime("%-z").should == "-0000"
+ time = Time.gm(2022)
+ time.strftime("%-z").should == "-0000"
- time = Time.new(2022, 1, 1, 0, 0, 0, "Z")
- time.strftime("%-z").should == "-0000"
+ time = Time.new(2022, 1, 1, 0, 0, 0, "Z")
+ time.strftime("%-z").should == "-0000"
- time = Time.new(2022, 1, 1, 0, 0, 0, "-00:00")
- time.strftime("%-z").should == "-0000"
+ time = Time.new(2022, 1, 1, 0, 0, 0, "-00:00")
+ time.strftime("%-z").should == "-0000"
- time = Time.new(2022, 1, 1, 0, 0, 0, "+03:00").utc
- time.strftime("%-z").should == "-0000"
- end
+ time = Time.new(2022, 1, 1, 0, 0, 0, "+03:00").utc
+ time.strftime("%-z").should == "-0000"
+ end
- it "ignores '-' flag for non-UTC time" do
- time = Time.new(2022, 1, 1, 0, 0, 0, "+03:00")
- time.strftime("%-z").should == "+0300"
- end
+ it "ignores '-' flag for non-UTC time" do
+ time = Time.new(2022, 1, 1, 0, 0, 0, "+03:00")
+ time.strftime("%-z").should == "+0300"
+ end
- it "works correctly with width, _ and 0 flags, and :" do
- Time.now.utc.strftime("%-_10z").should == " -000"
- Time.now.utc.strftime("%-10z").should == "-000000000"
- Time.now.utc.strftime("%-010:z").should == "-000000:00"
- Time.now.utc.strftime("%-_10:z").should == " -0:00"
- Time.now.utc.strftime("%-_10::z").should == " -0:00:00"
- end
+ it "works correctly with width, _ and 0 flags, and :" do
+ Time.now.utc.strftime("%-_10z").should == " -000"
+ Time.now.utc.strftime("%-10z").should == "-000000000"
+ Time.now.utc.strftime("%-010:z").should == "-000000:00"
+ Time.now.utc.strftime("%-_10:z").should == " -0:00"
+ Time.now.utc.strftime("%-_10::z").should == " -0:00:00"
end
end