Fixes date format on legislation helper

This commit is contained in:
decabeza
2018-11-13 18:05:17 +01:00
parent 6cfd0c2e13
commit 5abeeb8588
2 changed files with 16 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
module LegislationHelper module LegislationHelper
def format_date(date) def format_date(date)
l(date, format: "%d %h %Y") if date l(date, format: "%d %b %Y") if date
end end
def format_date_for_calendar_form(date) def format_date_for_calendar_form(date)

View File

@@ -47,6 +47,21 @@ feature 'Legislation' do
end end
end end
scenario 'Key dates are displayed on current locale' do
process = create(:legislation_process, proposals_phase_start_date: Date.new(2018, 01, 01),
proposals_phase_end_date: Date.new(2018, 12, 01))
visit legislation_process_path(process)
expect(page).to have_content("Proposals")
expect(page).to have_content("01 Jan 2018 - 01 Dec 2018")
visit legislation_process_path(process, locale: "es")
expect(page).to have_content("Propuestas")
expect(page).to have_content("01 ene 2018 - 01 dic 2018")
end
scenario 'Filtering processes' do scenario 'Filtering processes' do
create(:legislation_process, title: "Process open") create(:legislation_process, title: "Process open")
create(:legislation_process, :next, title: "Process next") create(:legislation_process, :next, title: "Process next")