Checking if attachment is really deleted from database
This commit is contained in:
parent
2d4b19e913
commit
08541c2d1a
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue