2019-08-06 11:02:54 +02:00
|
|
|
describe 'instructeurs/avis/instruction.html.haml', type: :view do
|
2019-10-21 11:45:03 +02:00
|
|
|
let(:expert) { create(:instructeur) }
|
|
|
|
let(:avis) { create(:avis, confidentiel: confidentiel, email: expert.email) }
|
2018-11-22 18:28:08 +01:00
|
|
|
|
|
|
|
before do
|
|
|
|
assign(:avis, avis)
|
2019-10-21 11:45:03 +02:00
|
|
|
assign(:new_avis, Avis.new)
|
|
|
|
assign(:dossier, avis.dossier)
|
2019-08-06 11:02:54 +02:00
|
|
|
allow(view).to receive(:current_instructeur).and_return(avis.instructeur)
|
2018-11-22 18:28:08 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
subject { render }
|
|
|
|
|
|
|
|
context 'with a confidential avis' do
|
|
|
|
let(:confidentiel) { true }
|
|
|
|
it { is_expected.to have_text("Cet avis est confidentiel et n'est pas affiché aux autres experts consultés") }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a not confidential avis' do
|
|
|
|
let(:confidentiel) { false }
|
|
|
|
it { is_expected.to have_text("Cet avis est partagé avec les autres experts") }
|
|
|
|
end
|
|
|
|
end
|