You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
847 B
29 lines
847 B
require "rails_helper" |
|
|
|
RSpec.describe SchemesController, type: :request do |
|
let(:organisation) { user.organisation } |
|
let(:headers) { { "Accept" => "text/html" } } |
|
let(:page) { Capybara::Node::Simple.new(response.body) } |
|
let(:user) { FactoryBot.create(:user, :data_coordinator) } |
|
let!(:schemes) { FactoryBot.create_list(:scheme, 5) } |
|
|
|
describe "#index" do |
|
context "when signed in as a support user" do |
|
before do |
|
allow(user).to receive(:need_two_factor_authentication?).and_return(false) |
|
sign_in user |
|
get "/supported-housing" |
|
end |
|
|
|
it "has page heading" do |
|
expect(page).to have_content("Supported housing services") |
|
end |
|
|
|
it "shows all schemes" do |
|
schemes.each do |scheme| |
|
expect(page).to have_content(scheme.code) |
|
end |
|
end |
|
end |
|
end |
|
end
|
|
|