1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2019-07-27 12:40:09 +02:00
parent a06301b103
commit 5c276e1cc9
1247 changed files with 5316 additions and 5028 deletions

View file

@ -34,19 +34,19 @@ describe :env_store, shared: true do
end
it "raises TypeError when the key is not coercible to String" do
lambda { ENV.send(@method, Object.new, "bar") }.should raise_error(TypeError)
-> { ENV.send(@method, Object.new, "bar") }.should raise_error(TypeError)
end
it "raises TypeError when the value is not coercible to String" do
lambda { ENV.send(@method, "foo", Object.new) }.should raise_error(TypeError)
-> { ENV.send(@method, "foo", Object.new) }.should raise_error(TypeError)
end
it "raises Errno::EINVAL when the key contains the '=' character" do
lambda { ENV.send(@method, "foo=", "bar") }.should raise_error(Errno::EINVAL)
-> { ENV.send(@method, "foo=", "bar") }.should raise_error(Errno::EINVAL)
end
it "raises Errno::EINVAL when the key is an empty string" do
lambda { ENV.send(@method, "", "bar") }.should raise_error(Errno::EINVAL)
-> { ENV.send(@method, "", "bar") }.should raise_error(Errno::EINVAL)
end
it "does nothing when the key is not a valid environment variable key and the value is nil" do