2018-12-19 14:47:15 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'Authentication', type: :system do
|
|
|
|
|
|
|
|
scenario 'Login', authenticated: false do
|
|
|
|
login(
|
|
|
|
username: 'master@example.com',
|
|
|
|
password: 'test',
|
|
|
|
)
|
|
|
|
|
2019-01-14 15:31:31 +00:00
|
|
|
expect_current_route 'dashboard'
|
2018-12-19 14:47:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'Logout' do
|
|
|
|
logout
|
2019-01-14 15:31:31 +00:00
|
|
|
expect_current_route 'login', wait: 2
|
2018-12-19 14:47:15 +00:00
|
|
|
end
|
|
|
|
end
|