2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "ENV.shift" do
|
|
|
|
it "returns a pair and deletes it" do
|
2020-05-03 06:28:29 -04:00
|
|
|
ENV.should_not.empty?
|
2017-05-07 08:04:49 -04: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 17:20:11 -04:00
|
|
|
describe "ENV.shift" do
|
|
|
|
before :each do
|
|
|
|
@orig = ENV.to_hash
|
|
|
|
@external = Encoding.default_external
|
|
|
|
@internal = Encoding.default_internal
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-06-27 15:02:36 -04:00
|
|
|
Encoding.default_external = Encoding::BINARY
|
2019-04-28 17:20:11 -04:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-04-28 17:20:11 -04:00
|
|
|
after :each do
|
|
|
|
Encoding.default_external = @external
|
|
|
|
Encoding.default_internal = @internal
|
|
|
|
ENV.replace @orig
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-04-28 17:20:11 -04:00
|
|
|
it "uses the locale encoding if Encoding.default_internal is nil" do
|
|
|
|
Encoding.default_internal = nil
|
2017-05-07 08:04:49 -04:00
|
|
|
|
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
|
2017-05-07 08:04:49 -04:00
|
|
|
|
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)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|