spec/mashed/stringy_hash_spec.rb in mashed-1.0.1 vs spec/mashed/stringy_hash_spec.rb in mashed-1.0.2
- old
+ new
@@ -34,6 +34,10 @@
def to_s; "a"; end
end
}
it { expect(s[klass.new]).to eq(1) }
end
+
+ describe "#merge" do
+ it { expect(stringify.merge({hello: "world"})).to include("hello"=>"world") }
+ end
end