2019-08-06 11:02:54 +02:00
|
|
|
describe 'instructeurs/avis/instruction.html.haml', type: :view do
|
2018-11-22 18:28:08 +01:00
|
|
|
let(:avis) { create(:avis, confidentiel: confidentiel) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
assign(:avis, avis)
|
|
|
|
@dossier = create(:dossier, :accepte)
|
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
|