summaryrefslogtreecommitdiff
path: root/spec/ruby/shared/time
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2019-04-28 23:20:11 +0200
committerBenoit Daloze <eregontp@gmail.com>2019-04-28 23:20:11 +0200
commit79671ec57e59091260a0bc3d40a31d31d9c72a94 (patch)
tree2f59a8727b8f63f9e79d50352fa4f78a7cc00234 /spec/ruby/shared/time
parent994833085ae06afbe94d30ab183d80e0234fbe14 (diff)
Update to ruby/spec@7de852d
Diffstat (limited to 'spec/ruby/shared/time')
-rw-r--r--spec/ruby/shared/time/strftime_for_date.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/spec/ruby/shared/time/strftime_for_date.rb b/spec/ruby/shared/time/strftime_for_date.rb
index f126c5a323..dbb124adc8 100644
--- a/spec/ruby/shared/time/strftime_for_date.rb
+++ b/spec/ruby/shared/time/strftime_for_date.rb
@@ -264,12 +264,10 @@ describe :strftime_date, shared: true do
@new_date[2001,3,22].strftime("%-m/%-d/%-y").should == "3/22/1"
end
- with_feature :encoding do
- it "passes the format string's encoding to the result string" do
- result = @new_date[2010,3,8].strftime("%d. März %Y")
+ it "passes the format string's encoding to the result string" do
+ result = @new_date[2010,3,8].strftime("%d. März %Y")
- result.encoding.should == Encoding::UTF_8
- result.should == "08. März 2010"
- end
+ result.encoding.should == Encoding::UTF_8
+ result.should == "08. März 2010"
end
end