spec: add test case
This commit is contained in:
parent
b889d18217
commit
285f402483
1 changed files with 8 additions and 0 deletions
|
@ -135,6 +135,14 @@ describe ProcedureRevision do
|
||||||
expect { child.reload }.to raise_error ActiveRecord::RecordNotFound
|
expect { child.reload }.to raise_error ActiveRecord::RecordNotFound
|
||||||
expect(draft.types_de_champ_public.size).to eq(1)
|
expect(draft.types_de_champ_public.size).to eq(1)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'can remove the parent' do
|
||||||
|
draft.remove_type_de_champ(type_de_champ_repetition.stable_id)
|
||||||
|
|
||||||
|
expect { child.reload }.to raise_error ActiveRecord::RecordNotFound
|
||||||
|
expect { type_de_champ_repetition.reload }.to raise_error ActiveRecord::RecordNotFound
|
||||||
|
expect(draft.types_de_champ_public).to be_empty
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue