diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/controllers/api/v1/accounts_controller_spec.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/controllers/api/v1/accounts_controller_spec.rb b/spec/controllers/api/v1/accounts_controller_spec.rb index bc7c78c70..7a67f1c56 100644 --- a/spec/controllers/api/v1/accounts_controller_spec.rb +++ b/spec/controllers/api/v1/accounts_controller_spec.rb @@ -18,6 +18,13 @@ RSpec.describe Api::V1::AccountsController, type: :controller do end end + describe 'GET #verify_credentials' do + it 'returns http success' do + get :verify_credentials + expect(response).to have_http_status(:success) + end + end + describe 'GET #statuses' do it 'returns http success' do get :statuses, params: { id: user.account.id } |