diff options
author | nicolas <nclm@users.noreply.github.com> | 2016-11-25 08:53:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-25 08:53:34 +0100 |
commit | 9af6c52a41664e5b6dd7c200d696499e00cf1c01 (patch) | |
tree | e56114e766ee39c4825a556c0dc12e90240faece /spec/controllers/api/v1/accounts_controller_spec.rb | |
parent | 60577f4c6ee9f4a4c9af0a41a8954e19a5f2c8cf (diff) | |
parent | 543d06971e461510591ff64ebc666bd414e8e084 (diff) |
Merge pull request #3 from Gargron/master
Merge
Diffstat (limited to 'spec/controllers/api/v1/accounts_controller_spec.rb')
-rw-r--r-- | spec/controllers/api/v1/accounts_controller_spec.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/controllers/api/v1/accounts_controller_spec.rb b/spec/controllers/api/v1/accounts_controller_spec.rb index 98eea28ce..e4532305b 100644 --- a/spec/controllers/api/v1/accounts_controller_spec.rb +++ b/spec/controllers/api/v1/accounts_controller_spec.rb @@ -46,20 +46,6 @@ RSpec.describe Api::V1::AccountsController, type: :controller do end end - describe 'GET #suggestions' do - it 'returns http success' do - get :suggestions - expect(response).to have_http_status(:success) - end - end - - describe 'GET #common_followers' do - it 'returns http success' do - get :common_followers, params: { id: user.account.id } - expect(response).to have_http_status(:success) - end - end - describe 'POST #follow' do let(:other_account) { Fabricate(:user, email: 'bob@example.com', account: Fabricate(:account, username: 'bob')).account } |