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.
10 lines
307 B
10 lines
307 B
3 years ago
|
require "rails_helper"
|
||
|
RSpec.describe "User Features" do
|
||
|
let!(:user) { FactoryBot.build(: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
|
||
|
end
|
||
|
end
|