Browse Source

Spec fix

CLDC-20-more-ac-fixes3
Jack S 2 years ago
parent
commit
c577562d5a
  1. 6
      spec/features/lettings_log_spec.rb

6
spec/features/lettings_log_spec.rb

@ -89,8 +89,7 @@ RSpec.describe "Lettings Log Features" do
log_id = page.current_path.scan(/\d/).join
visit("lettings-logs/#{log_id}/setup/check-answers")
expect(page).to have_content("Housing provider #{support_user.organisation.name}")
expect(page).to have_content("Log owner #{support_user.name}")
expect(page).to have_content("You have answered 3 of 9 questions")
expect(page).to have_content("You have answered 2 of 8 questions")
end
end
end
@ -119,8 +118,7 @@ RSpec.describe "Lettings Log Features" do
expect(page).to have_current_path("/lettings-logs/#{log_id}/needs-type")
visit("lettings-logs/#{log_id}/setup/check-answers")
expect(page).not_to have_content("Owning organisation #{user.organisation.name}")
expect(page).not_to have_content("User #{user.name}")
expect(page).to have_content("You have answered 0 of 6 questions")
expect(page).not_to have_content("Log owner #{user.name}")
end
end

Loading…
Cancel
Save