Browse Source

lint

pull/767/head
Kat 3 years ago
parent
commit
179a1a55bf
  1. 2
      spec/features/schemes_helpers.rb
  2. 8
      spec/features/schemes_spec.rb

2
spec/features/schemes_helpers.rb

@ -28,7 +28,7 @@ module SchemesHelpers
check "This scheme contains confidential information"
choose "Direct access hostel"
choose "Yes – registered care home providing nursing care"
select organisation.name, from: "scheme-owning-organisation-id-field"
select organisation_name, from: "scheme-owning-organisation-id-field"
choose answers["housing_stock_owners"].presence || "The same organisation that owns the housing stock"
click_button "Save and continue"
end

8
spec/features/schemes_spec.rb

@ -208,10 +208,11 @@ RSpec.describe "Schemes scheme Features" do
end
context "when creating a new scheme" do
let!(:organisation) { FactoryBot.create(:organisation, name: "FooBar") }
let(:organisation_name) { "FooBar" }
let(:scheme) { Scheme.first }
before do
FactoryBot.create(:organisation, name: organisation_name)
Scheme.destroy_all
click_link "Schemes", href: "/schemes"
end
@ -222,8 +223,6 @@ RSpec.describe "Schemes scheme Features" do
end
context "when I press create a new scheme" do
let!(:organisation) { FactoryBot.create(:organisation, name: "FooBar") }
before do
click_link "Create a new supported housing scheme"
end
@ -470,13 +469,12 @@ RSpec.describe "Schemes scheme Features" do
end
end
context "when I fill in scheme details indicating that supported services provided by a different organisation and I press save I see primary client group section" do
let(:scheme) { Scheme.first }
let!(:another_organisation) { FactoryBot.create(:organisation, name: "Another Org") }
before do
fill_in_and_save_scheme_details({"housing_stock_owners" => "Another registered housing provider"})
fill_in_and_save_scheme_details({ "housing_stock_owners" => "Another registered housing provider" })
end
it "lets me fill in the managing organisation details" do

Loading…
Cancel
Save