diff options
author | Azul <azul@leap.se> | 2014-07-17 11:18:57 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-07-17 11:18:57 +0200 |
commit | e8a3df62d14c8dd775811f4af885cf7e76d5d3f6 (patch) | |
tree | 99905fc826fbcdf0634be3b31945e6df8c7e7a1e /test/support/api_integration_test.rb | |
parent | bb10a669e1129c662ba01f223bd5a0ee7f2a0344 (diff) |
clean up error assertions in tests
We're not testing the redirects anymore. But the error messages should be pretty clear already. We can start testing redirects again once we redirect to different places for different actions.
Diffstat (limited to 'test/support/api_integration_test.rb')
-rw-r--r-- | test/support/api_integration_test.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/support/api_integration_test.rb b/test/support/api_integration_test.rb index ccf7066..bd10f11 100644 --- a/test/support/api_integration_test.rb +++ b/test/support/api_integration_test.rb @@ -14,11 +14,6 @@ class ApiIntegrationTest < ActionDispatch::IntegrationTest @token.save end - def assert_login_required - assert_equal 401, get_response.status - assert_json_response error: I18n.t(:not_authorized_login) - end - teardown do if @user && @user.persisted? Identity.destroy_all_for @user |