baarkerlounger
3 years ago
committed by
GitHub
5 changed files with 40 additions and 2 deletions
@ -0,0 +1,31 @@
|
||||
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 |
Loading…
Reference in new issue