Land #4843, fix up datastore case spec
commit
501301eae0
|
@ -25,8 +25,9 @@ shared_examples "datastore" do
|
|||
end
|
||||
end
|
||||
context "#delete" do
|
||||
it "should delete the specified key" do
|
||||
subject.delete("foo") == { "fizz" => "buzz" }
|
||||
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