Add case-insensitive test of delete

bug/bundler_fix
William Vu 2015-02-25 10:46:44 -06:00
parent 36e40f02c9
commit f61fb0555d
1 changed files with 2 additions and 1 deletions

View File

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