mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@875a09e
This commit is contained in:
parent
a06301b103
commit
5c276e1cc9
1247 changed files with 5316 additions and 5028 deletions
8
spec/ruby/core/env/shared/store.rb
vendored
8
spec/ruby/core/env/shared/store.rb
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue