trabajo-afectivo/spec/system/basic/authentication_spec.rb

19 lines
325 B
Ruby
Raw Normal View History

require 'rails_helper'
RSpec.describe 'Authentication', type: :system do
scenario 'Login', authenticated: false do
login(
username: 'master@example.com',
password: 'test',
)
have_current_route 'dashboard'
end
scenario 'Logout' do
logout
have_current_route 'login', wait: 2
end
end