Browse Source

fix form tests

pull/885/head
Kat 3 years ago
parent
commit
61e8c4116a
  1. 4
      spec/models/form_spec.rb

4
spec/models/form_spec.rb

@ -218,9 +218,9 @@ RSpec.describe Form, type: :model do
expect(form.sections[0].class).to eq(Form::Sales::Sections::Setup)
expect(form.subsections.count).to eq(1)
expect(form.subsections.first.id).to eq("setup")
expect(form.pages.count).to eq(9)
expect(form.pages.count).to eq(10)
expect(form.pages.first.id).to eq("organisation")
expect(form.questions.count).to eq(10)
expect(form.questions.count).to eq(11)
expect(form.questions.first.id).to eq("owning_organisation_id")
expect(form.start_date).to eq(Time.zone.parse("2022-04-01"))
expect(form.end_date).to eq(Time.zone.parse("2023-07-01"))

Loading…
Cancel
Save