Submit social housing lettings and sales data (CORE)
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.

27 lines
862 B

require "rails_helper"
RSpec.describe "User Features" do
3 years ago
let!(:user) { FactoryBot.create(:user) }
context "A user navigating to case logs" do
it " is required to log in" do
visit("/case_logs")
expect(page).to have_current_path("/users/sign_in")
end
it " is redirected to case logs after signing in" do
visit("/case_logs")
fill_in("user_email", with: "test@example.com")
fill_in("user_password", with: "pAssword1")
click_button("Log in")
expect(page).to have_current_path("/case_logs")
end
end
3 years ago
context "A user who has forgotten their password" do
it " is redirected to the forgotten password page when they click the forgot password link" do
visit("/case_logs")
click_link("Forgot your password?")
expect(page).to have_current_path("/users/password/new")
end
3 years ago
end
end