Browse Source

fix tests

pull/918/head
Ted-U 3 years ago
parent
commit
12ccac493b
  1. 2
      spec/models/form/sales/questions/building_type_spec.rb
  2. 2
      spec/models/form_handler_spec.rb
  3. 4
      spec/models/form_spec.rb

2
spec/models/form/sales/questions/building_type_spec.rb

@ -20,7 +20,7 @@ RSpec.describe Form::Sales::Questions::BuildingType, type: :model do
end
it "has the correct check_answer_label" do
expect(question.check_answer_label).to eq("Building type")
expect(question.check_answer_label).to eq("Type of building")
end
it "has the correct type" do

2
spec/models/form_handler_spec.rb

@ -61,7 +61,7 @@ RSpec.describe FormHandler do
it "is able to load a current sales form" do
form = form_handler.get_form("current_sales")
expect(form).to be_a(Form)
expect(form.pages.count).to eq(17)
expect(form.pages.count).to eq(18)
expect(form.name).to eq("2022_2023_sales")
end

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(11)
expect(form.pages.count).to eq(12)
expect(form.pages.first.id).to eq("organisation")
expect(form.questions.count).to eq(12)
expect(form.questions.count).to eq(13)
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