Add case-insensitive test of delete
parent
36e40f02c9
commit
f61fb0555d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue