23 lines
963 B
Ruby
23 lines
963 B
Ruby
describe APIEntreprise::ExercicesAdapter do
|
|
let(:siret) { '41816609600051' }
|
|
let(:procedure) { create(:procedure) }
|
|
subject { described_class.new(siret, procedure.id).to_params }
|
|
|
|
before do
|
|
stub_request(:get, /https:\/\/entreprise.api.gouv.fr\/v2\/exercices\//)
|
|
.to_return(body: File.read('spec/fixtures/files/api_entreprise/exercices.json', status: 200))
|
|
allow_any_instance_of(APIEntrepriseToken).to receive(:expired?).and_return(false)
|
|
end
|
|
|
|
it { is_expected.to be_an_instance_of(Hash) }
|
|
|
|
it 'contains several exercices attributes' do
|
|
expect(subject[:exercices_attributes].size).to eq(3)
|
|
end
|
|
|
|
it 'contains informations in each exercices_attributes' do
|
|
expect(subject[:exercices_attributes][0][:ca]).to eq('21009417')
|
|
expect(subject[:exercices_attributes][0][:date_fin_exercice]).to eq("2013-12-31T00:00:00+01:00")
|
|
expect(subject[:exercices_attributes][0][:date_fin_exercice_timestamp]).to eq(1388444400)
|
|
end
|
|
end
|