diff options
author | Azul <azul@leap.se> | 2013-10-30 20:13:16 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-10-30 20:17:43 +0100 |
commit | f6924bfe3b540c384fa53e55db9db3a64a34ced3 (patch) | |
tree | 23625c0daafbaade2a1aeb9bf9b17070f1f67d51 /users/test/functional/users_controller_test.rb | |
parent | dd88c7f84cb3c497c6327c364b3c08993c51a08f (diff) |
test helper to expect_logout.
Currently it expects both the session and the token to be cleared. This might change. But we'll always have a definition of what it means to logout we can test this way.
Diffstat (limited to 'users/test/functional/users_controller_test.rb')
-rw-r--r-- | users/test/functional/users_controller_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/test/functional/users_controller_test.rb b/users/test/functional/users_controller_test.rb index 052de04..75d900f 100644 --- a/users/test/functional/users_controller_test.rb +++ b/users/test/functional/users_controller_test.rb @@ -91,6 +91,7 @@ class UsersControllerTest < ActionController::TestCase user.expects(:destroy) login user + expect_logout delete :destroy, :id => @current_user.id assert_response :redirect |