mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ab516e263c
https://github.com/ruby/spec/commit/51047687c0 https://github.com/ruby/spec/commit/2b87b467cc
14 lines
267 B
Ruby
14 lines
267 B
Ruby
require_relative 'spec_helper'
|
|
|
|
describe "ENV.values" do
|
|
|
|
it "returns an array of the values" do
|
|
ENV.values.should == ENV.to_hash.values
|
|
end
|
|
|
|
it "uses the locale encoding" do
|
|
ENV.values.each do |value|
|
|
value.should.be_locale_env
|
|
end
|
|
end
|
|
end
|