about summary refs log tree commit diff
path: root/spec/features/log_in_spec.rb
blob: 6dc3cd2f4eae41b030f8b1fb87918177a4e4411e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "rails_helper"

feature "Log in" do
  given(:email)    { "test@examle.com" }
  given(:password) { "password" }

  background do
    Fabricate(:user, email: email, password: password)
  end

  scenario "A valid email and password user is able to log in" do
    visit new_user_session_path
    fill_in "user_email", with: email
    fill_in "user_password", with: password
    click_on "Log in"

    expect(page).to have_css "div.app-holder"
  end
end