diff --git a/spec/couchrest/attachment_spec.rb b/spec/couchrest/attachment_spec.rb index 75331e1..ac3de02 100644 --- a/spec/couchrest/attachment_spec.rb +++ b/spec/couchrest/attachment_spec.rb @@ -30,6 +30,13 @@ describe "Model attachments" do @obj.delete_attachment(@attachment_name) @obj.has_attachment?(@attachment_name).should be_false end + + it 'should return false if an attachment has been removed and reloaded' do + @obj.delete_attachment(@attachment_name) + reloaded_obj = Basic.get(@obj.id) + reloaded_obj.has_attachment?(@attachment_name).should be_false + end + end describe "creating an attachment" do