2017-12-14 15:51:45 +01:00
|
|
|
describe DossierSerializer do
|
|
|
|
describe '#attributes' do
|
|
|
|
subject { DossierSerializer.new(dossier).serializable_hash }
|
|
|
|
|
|
|
|
context 'when the dossier is en_construction' do
|
|
|
|
let(:dossier) { create(:dossier, :en_construction) }
|
|
|
|
|
|
|
|
it { is_expected.to include(initiated_at: dossier.en_construction_at) }
|
|
|
|
it { is_expected.to include(state: 'initiated') }
|
|
|
|
end
|
2017-12-14 15:53:02 +01:00
|
|
|
|
|
|
|
context 'when the dossier is en instruction' do
|
|
|
|
let(:dossier) { create(:dossier, :en_instruction) }
|
|
|
|
|
|
|
|
it { is_expected.to include(received_at: dossier.en_instruction_at) }
|
|
|
|
it { is_expected.to include(state: 'received') }
|
|
|
|
end
|
2017-12-04 18:00:12 +01:00
|
|
|
|
|
|
|
context 'when the dossier is accepte' do
|
2018-08-28 14:10:55 +02:00
|
|
|
let(:dossier) { create(:dossier, state: Dossier.states.fetch(:accepte)) }
|
2017-12-04 18:00:12 +01:00
|
|
|
|
|
|
|
it { is_expected.to include(state: 'closed') }
|
|
|
|
end
|
2017-12-04 18:15:40 +01:00
|
|
|
|
|
|
|
context 'when the dossier is refuse' do
|
2018-08-28 14:10:55 +02:00
|
|
|
let(:dossier) { create(:dossier, state: Dossier.states.fetch(:refuse)) }
|
2017-12-04 18:15:40 +01:00
|
|
|
|
|
|
|
it { is_expected.to include(state: 'refused') }
|
|
|
|
end
|
2017-12-04 20:23:57 +01:00
|
|
|
|
|
|
|
context 'when the dossier is sans_suite' do
|
2018-08-28 14:10:55 +02:00
|
|
|
let(:dossier) { create(:dossier, state: Dossier.states.fetch(:sans_suite)) }
|
2017-12-04 20:23:57 +01:00
|
|
|
|
|
|
|
it { is_expected.to include(state: 'without_continuation') }
|
|
|
|
end
|
2017-12-14 15:51:45 +01:00
|
|
|
end
|
|
|
|
end
|