2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2020-12-27 17:35:32 +01:00
|
|
|
require_relative 'fixtures/common'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2019-04-28 23:20:11 +02:00
|
|
|
describe "ENV.shift" do
|
|
|
|
before :each do
|
|
|
|
@orig = ENV.to_hash
|
|
|
|
@external = Encoding.default_external
|
|
|
|
@internal = Encoding.default_internal
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2019-06-27 21:02:36 +02:00
|
|
|
Encoding.default_external = Encoding::BINARY
|
2021-10-20 21:41:46 +02:00
|
|
|
ENV.replace({"FOO"=>"BAR"})
|
2019-04-28 23:20:11 +02:00
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2019-04-28 23:20:11 +02:00
|
|
|
after :each do
|
|
|
|
Encoding.default_external = @external
|
|
|
|
Encoding.default_internal = @internal
|
|
|
|
ENV.replace @orig
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2021-10-20 21:41:46 +02:00
|
|
|
it "returns a pair and deletes it" do
|
|
|
|
ENV.should.has_key?("FOO")
|
|
|
|
pair = ENV.shift
|
|
|
|
pair.should == ["FOO", "BAR"]
|
|
|
|
ENV.should_not.has_key?("FOO")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns nil if ENV.empty?" do
|
|
|
|
ENV.clear
|
|
|
|
ENV.shift.should == nil
|
|
|
|
end
|
|
|
|
|
2019-04-28 23:20:11 +02:00
|
|
|
it "uses the locale encoding if Encoding.default_internal is nil" do
|
|
|
|
Encoding.default_internal = nil
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2019-04-28 23:20:11 +02:00
|
|
|
pair = ENV.shift
|
2020-12-27 17:35:32 +01:00
|
|
|
pair.first.encoding.should equal(ENVSpecs.encoding)
|
|
|
|
pair.last.encoding.should equal(ENVSpecs.encoding)
|
2019-04-28 23:20:11 +02:00
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
|
2019-04-28 23:20:11 +02: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)
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
end
|