Land #4843, fix up datastore case spec

bug/bundler_fix
Tod Beardsley 2015-02-25 11:15:18 -06:00
commit 501301eae0
No known key found for this signature in database
GPG Key ID: BD63D0A3EA19CAAC
1 changed files with 3 additions and 2 deletions

View File

@ -25,8 +25,9 @@ shared_examples "datastore" do
end end
end end
context "#delete" do context "#delete" do
it "should delete the specified key" do it "should delete the specified case-insensitive key" do
subject.delete("foo") == { "fizz" => "buzz" } subject.delete("foo").should == "bar"
subject.delete("Fizz").should == "buzz"
end end
end end
end end