summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/shared/collect.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/array/shared/collect.rb')
-rw-r--r--spec/ruby/core/array/shared/collect.rb22
1 files changed, 11 insertions, 11 deletions
diff --git a/spec/ruby/core/array/shared/collect.rb b/spec/ruby/core/array/shared/collect.rb
index 030302ced6..aec51c9dc9 100644
--- a/spec/ruby/core/array/shared/collect.rb
+++ b/spec/ruby/core/array/shared/collect.rb
@@ -6,11 +6,11 @@ describe :array_collect, shared: true do
a = ['a', 'b', 'c', 'd']
b = a.send(@method) { |i| i + '!' }
b.should == ["a!", "b!", "c!", "d!"]
- b.should_not equal a
+ b.should_not.equal? a
end
it "does not return subclass instance" do
- ArraySpecs::MyArray[1, 2, 3].send(@method) { |x| x + 1 }.should be_an_instance_of(Array)
+ ArraySpecs::MyArray[1, 2, 3].send(@method) { |x| x + 1 }.should.instance_of?(Array)
end
it "does not change self" do
@@ -33,14 +33,14 @@ describe :array_collect, shared: true do
it "returns an Enumerator when no block given" do
a = [1, 2, 3]
- a.send(@method).should be_an_instance_of(Enumerator)
+ a.send(@method).should.instance_of?(Enumerator)
end
it "raises an ArgumentError when no block and with arguments" do
a = [1, 2, 3]
-> {
a.send(@method, :foo)
- }.should raise_error(ArgumentError)
+ }.should.raise(ArgumentError)
end
before :all do
@@ -54,14 +54,14 @@ end
describe :array_collect_b, shared: true do
it "replaces each element with the value returned by block" do
a = [7, 9, 3, 5]
- a.send(@method) { |i| i - 1 }.should equal(a)
+ a.send(@method) { |i| i - 1 }.should.equal?(a)
a.should == [6, 8, 2, 4]
end
it "returns self" do
a = [1, 2, 3, 4, 5]
b = a.send(@method) {|i| i+1 }
- a.should equal b
+ a.should.equal? b
end
it "returns the evaluated value of block but its contents is partially modified, if it broke in the block" do
@@ -80,28 +80,28 @@ describe :array_collect_b, shared: true do
it "returns an Enumerator when no block given, and the enumerator can modify the original array" do
a = [1, 2, 3]
enum = a.send(@method)
- enum.should be_an_instance_of(Enumerator)
+ enum.should.instance_of?(Enumerator)
enum.each{|i| "#{i}!" }
a.should == ["1!", "2!", "3!"]
end
describe "when frozen" do
it "raises a FrozenError" do
- -> { ArraySpecs.frozen_array.send(@method) {} }.should raise_error(FrozenError)
+ -> { ArraySpecs.frozen_array.send(@method) {} }.should.raise(FrozenError)
end
it "raises a FrozenError when empty" do
- -> { ArraySpecs.empty_frozen_array.send(@method) {} }.should raise_error(FrozenError)
+ -> { ArraySpecs.empty_frozen_array.send(@method) {} }.should.raise(FrozenError)
end
it "raises a FrozenError when calling #each on the returned Enumerator" do
enumerator = ArraySpecs.frozen_array.send(@method)
- -> { enumerator.each {|x| x } }.should raise_error(FrozenError)
+ -> { enumerator.each {|x| x } }.should.raise(FrozenError)
end
it "raises a FrozenError when calling #each on the returned Enumerator when empty" do
enumerator = ArraySpecs.empty_frozen_array.send(@method)
- -> { enumerator.each {|x| x } }.should raise_error(FrozenError)
+ -> { enumerator.each {|x| x } }.should.raise(FrozenError)
end
end