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

58 lines
1.3 KiB
Ruby
Raw Normal View History

require_relative '../../spec_helper'
describe "ENV.shift" do
it "returns a pair and deletes it" do
2020-05-03 06:28:29 -04:00
ENV.should_not.empty?
orig = ENV.to_hash
begin
pair = ENV.shift
ENV.has_key?(pair.first).should == false
ensure
ENV.replace orig
end
ENV.has_key?(pair.first).should == true
end
it "returns nil if ENV.empty?" do
orig = ENV.to_hash
begin
ENV.clear
ENV.shift.should == nil
ensure
ENV.replace orig
end
end
end
2019-04-28 17:20:11 -04:00
describe "ENV.shift" do
before :each do
@orig = ENV.to_hash
@external = Encoding.default_external
@internal = Encoding.default_internal
2019-06-27 15:02:36 -04:00
Encoding.default_external = Encoding::BINARY
2019-04-28 17:20:11 -04:00
end
2019-04-28 17:20:11 -04:00
after :each do
Encoding.default_external = @external
Encoding.default_internal = @internal
ENV.replace @orig
end
2019-04-28 17:20:11 -04:00
it "uses the locale encoding if Encoding.default_internal is nil" do
Encoding.default_internal = nil
2019-04-28 17:20:11 -04:00
pair = ENV.shift
pair.first.encoding.should equal(Encoding.find("locale"))
pair.last.encoding.should equal(Encoding.find("locale"))
end
2019-04-28 17:20:11 -04:00
it "transcodes from the locale encoding to Encoding.default_internal if set" do
Encoding.default_internal = Encoding::IBM437
pair = ENV.shift
pair.first.encoding.should equal(Encoding::IBM437)
pair.last.encoding.should equal(Encoding::IBM437)
end
end