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.
32 lines
781 B
32 lines
781 B
3 years ago
|
require "rails_helper"
|
||
|
require_relative "form/helpers"
|
||
|
|
||
|
RSpec.describe "Start Page Features" do
|
||
|
include Helpers
|
||
|
let(:user) { FactoryBot.create(:user) }
|
||
|
|
||
|
context "a signed in user" do
|
||
|
before do
|
||
|
sign_in user
|
||
|
end
|
||
|
|
||
|
it "takes you to your logs" do
|
||
|
visit("/")
|
||
|
click_link("Start now")
|
||
|
expect(page).to have_current_path("/logs")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context "a not signed in user" do
|
||
|
it "takes you to sign in and then to your logs" do
|
||
|
visit("/")
|
||
|
click_link("Start now")
|
||
|
expect(page).to have_current_path("/users/sign-in?start=true")
|
||
|
fill_in("user[email]", with: user.email)
|
||
|
fill_in("user[password]", with: user.password)
|
||
|
click_button("Sign in")
|
||
|
expect(page).to have_current_path("/logs")
|
||
|
end
|
||
|
end
|
||
|
end
|