feat(correction): make pending corrections blocking by feature flag only

This commit is contained in:
Colin Darie 2023-12-18 12:32:27 +01:00
parent c0b444d747
commit 1a56fe620e
10 changed files with 50 additions and 26 deletions

View file

@ -68,9 +68,15 @@ describe 'instructeurs/dossiers/show', type: :view do
context 'with pending correction' do
before { create(:dossier_correction, dossier:) }
it 'disable the instruction button' do
expect(subject).to have_button('Passer en instruction', disabled: true)
expect(subject).to have_content('Le passage en instruction est impossible')
it { expect(subject).to have_button('Passer en instruction', disabled: false) }
context 'with procedure blocking pending correction' do
before { Flipper.enable(:blocking_pending_correction, dossier.procedure) }
it 'disable the instruction button' do
expect(subject).to have_button('Passer en instruction', disabled: true)
expect(subject).to have_content('Le passage en instruction est impossible')
end
end
end
end