|
|
@ -489,6 +489,10 @@ RSpec.describe OrganisationsController, type: :request do |
|
|
|
expect(page).to have_css("table tr", text: organisation.name) |
|
|
|
expect(page).to have_css("table tr", text: organisation.name) |
|
|
|
expect(page).not_to have_css("table tr", text: unauthorised_organisation.name) |
|
|
|
expect(page).not_to have_css("table tr", text: unauthorised_organisation.name) |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it "does not have a remove link" do |
|
|
|
|
|
|
|
expect(page).not_to have_link("Remove") |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
context "and the page is loaded after adding a new merging organisation" do |
|
|
|
context "and the page is loaded after adding a new merging organisation" do |
|
|
@ -498,6 +502,10 @@ RSpec.describe OrganisationsController, type: :request do |
|
|
|
expect(page).to have_css("table tr", text: organisation.name) |
|
|
|
expect(page).to have_css("table tr", text: organisation.name) |
|
|
|
expect(page).to have_css("table tr", text: unauthorised_organisation.name) |
|
|
|
expect(page).to have_css("table tr", text: unauthorised_organisation.name) |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it "has a remove link" do |
|
|
|
|
|
|
|
expect(page).to have_link("Remove", href: "/organisations/#{organisation.id}/merge/organisations") |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|