Integrate master branch

This commit is contained in:
Artur Beljajev 2018-08-08 19:36:14 +03:00
parent bf3b54367b
commit 6de31605d9
8 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,15 @@
require 'test_helper'
class AdminAreaSignOutTest < ApplicationSystemTestCase
def setup
sign_in users(:admin)
end
def test_logout
visit admin_root_url
click_on 'Sign out'
assert_text 'Signed out successfully'
assert_current_path new_admin_user_session_path
end
end