[fix #2813] set lien_notice nil when clone a procedure

This commit is contained in:
pedong 2018-12-06 13:51:41 +01:00 committed by gregoirenovel
parent c12586f522
commit f70f276ae9
2 changed files with 7 additions and 0 deletions

View file

@ -413,6 +413,12 @@ describe Procedure do
expect(subject.assign_to).to eq([])
end
describe 'should not duplicate lien_notice' do
let(:procedure) { create(:procedure, lien_notice: "http://toto.com") }
it { expect(subject.lien_notice).to be_nil }
end
describe 'procedure status is reset' do
let(:procedure) { create(:procedure, :archived, received_mail: received_mail, service: service) }