summaryrefslogtreecommitdiff
path: root/spec/unit/mash_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/mash_spec.rb')
-rw-r--r--spec/unit/mash_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/unit/mash_spec.rb b/spec/unit/mash_spec.rb
index 7358781e60..b8f4c2d5aa 100644
--- a/spec/unit/mash_spec.rb
+++ b/spec/unit/mash_spec.rb
@@ -24,27 +24,27 @@ describe Mash do
data = {:x=>"one", :y=>"two", :z=>"three"}
@orig = Mash.new(data)
@copy = @orig.dup
- @copy.to_hash.should == Mash.new(data).to_hash
+ expect(@copy.to_hash).to eq(Mash.new(data).to_hash)
@copy[:x] = "four"
- @orig[:x].should == "one"
+ expect(@orig[:x]).to eq("one")
end
it "should duplicate a mash with an array to a new mash" do
data = {:x=>"one", :y=>"two", :z=>[1,2,3]}
@orig = Mash.new(data)
@copy = @orig.dup
- @copy.to_hash.should == Mash.new(data).to_hash
+ expect(@copy.to_hash).to eq(Mash.new(data).to_hash)
@copy[:z] << 4
- @orig[:z].should == [1,2,3]
+ expect(@orig[:z]).to eq([1,2,3])
end
it "should duplicate a nested mash to a new mash" do
data = {:x=>"one", :y=>"two", :z=>Mash.new({:a=>[1,2,3]})}
@orig = Mash.new(data)
@copy = @orig.dup
- @copy.to_hash.should == Mash.new(data).to_hash
+ expect(@copy.to_hash).to eq(Mash.new(data).to_hash)
@copy[:z][:a] << 4
- @orig[:z][:a].should == [1,2,3]
+ expect(@orig[:z][:a]).to eq([1,2,3])
end
# add more!