Browse Source

Added test file for supported housing schemes

pull/648/head
Ted 3 years ago committed by JG
parent
commit
378bd2b98e
  1. 11
      spec/features/schemes_spec.rb

11
spec/features/schemes_spec.rb

@ -0,0 +1,11 @@
require "rails_helper"
RSpec.describe "Supported housing scheme Features" do
context "when viewing list of schemes" do
context "when I am signed as a support user in there are schemes in the database" do
let(:user) { FactoryBot.create(:user, :support, last_sign_in_at: Time.zone.now) }
let!(:schemes) { FactoryBot.create(:schemes) }
end
end
end
Loading…
Cancel
Save