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
|
|
|
|
|
|
|
describe "ENV.shift" do
|
|
|
|
it "returns a pair and deletes it" do
|
2020-05-03 12:28:29 +02:00
|
|
|
ENV.should_not.empty?
|
2017-05-07 12:04:49 +00:00
|
|
|
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 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
|
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
|
|
|
|
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
|