summaryrefslogtreecommitdiff
path: root/spec/ruby/core/env/select_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/env/select_spec.rb')
-rw-r--r--spec/ruby/core/env/select_spec.rb68
1 files changed, 68 insertions, 0 deletions
diff --git a/spec/ruby/core/env/select_spec.rb b/spec/ruby/core/env/select_spec.rb
new file mode 100644
index 0000000000..2b92d61551
--- /dev/null
+++ b/spec/ruby/core/env/select_spec.rb
@@ -0,0 +1,68 @@
+require_relative '../../spec_helper'
+require_relative '../enumerable/shared/enumeratorized'
+
+describe "ENV.select!" do
+ it_behaves_like :enumeratorized_with_origin_size, :select!, ENV
+
+ before :each do
+ @saved_foo = ENV["foo"]
+ end
+
+ after :each do
+ ENV["foo"] = @saved_foo
+ end
+
+ it "removes environment variables for which the block returns false" do
+ ENV["foo"] = "bar"
+ ENV.select! { |k, v| k != "foo" }
+ ENV["foo"].should == nil
+ end
+
+ it "returns self if any changes were made" do
+ ENV["foo"] = "bar"
+ (ENV.select! { |k, v| k != "foo" }).should == ENV
+ end
+
+ it "returns nil if no changes were made" do
+ (ENV.select! { true }).should == nil
+ end
+
+ it "returns an Enumerator if called without a block" do
+ ENV.select!.should.instance_of?(Enumerator)
+ end
+
+ it "selects via the enumerator" do
+ enum = ENV.select!
+ ENV["foo"] = "bar"
+ enum.each { |k, v| k != "foo" }
+ ENV["foo"].should == nil
+ end
+end
+
+describe "ENV.select" do
+ it_behaves_like :enumeratorized_with_origin_size, :select, ENV
+
+ before :each do
+ @saved_foo = ENV["foo"]
+ end
+
+ after :each do
+ ENV["foo"] = @saved_foo
+ end
+
+ it "returns a Hash of names and values for which block returns true" do
+ ENV["foo"] = "bar"
+ (ENV.select { |k, v| k == "foo" }).should == { "foo" => "bar" }
+ end
+
+ it "returns an Enumerator when no block is given" do
+ enum = ENV.select
+ enum.should.instance_of?(Enumerator)
+ end
+
+ it "selects via the enumerator" do
+ enum = ENV.select
+ ENV["foo"] = "bar"
+ enum.each { |k, v| k == "foo" }.should == { "foo" => "bar"}
+ end
+end