1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/spec] Fix failures with LC_ALL=C

51047687c0
2b87b467cc
This commit is contained in:
Nobuyoshi Nakada 2019-12-01 21:14:58 +09:00
parent 4e03a7298b
commit ab516e263c
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
10 changed files with 41 additions and 17 deletions

View file

@ -1,4 +1,4 @@
require_relative '../../spec_helper'
require_relative 'spec_helper'
describe "ENV.values" do
@ -8,7 +8,7 @@ describe "ENV.values" do
it "uses the locale encoding" do
ENV.values.each do |value|
value.encoding.should == Encoding.find('locale')
value.should.be_locale_env
end
end
end