2018-12-19 14:47:15 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'Authentication', type: :system do
|
|
|
|
|
2019-04-15 01:41:17 +00:00
|
|
|
it 'Login', authenticated: false do
|
2018-12-19 14:47:15 +00:00
|
|
|
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
|
|
|
|
|
2019-04-15 01:41:17 +00:00
|
|
|
it 'Logout' do
|
2018-12-19 14:47:15 +00:00
|
|
|
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
|