views: display auto-archive date on procedure description

This commit is contained in:
Judith 2020-05-27 11:25:43 +02:00 committed by GitHub Action
parent 59346ee868
commit 38eb60f2ac
5 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,10 @@
RSpec.describe ProcedureHelper, type: :helper do
let(:auto_archive_date) { Time.zone.local(2020, 8, 2, 12, 00) }
let(:procedure) { create(:procedure, auto_archive_on: auto_archive_date) }
subject { show_auto_archive(procedure) }
it "displays the day before the auto archive date (to account for the '23h59' ending time)" do
expect(subject).to eq "1 août 2020"
end
end