diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-12 03:55:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 03:55:39 +0100 |
commit | 1356ed72cd4f595e93a5fa23fd8d7459fc8f81b3 (patch) | |
tree | 3fef338a1a6cdd3992b64215f36d3c8186635b34 /spec/controllers | |
parent | 481fac7c8401a47af52043cd4db05b6dd984d8a9 (diff) |
Fix #5953 - Add GET /api/v1/accounts/:id/lists (#5983)
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/api/v1/accounts/lists_controller_spec.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/controllers/api/v1/accounts/lists_controller_spec.rb b/spec/controllers/api/v1/accounts/lists_controller_spec.rb new file mode 100644 index 000000000..0a372f65b --- /dev/null +++ b/spec/controllers/api/v1/accounts/lists_controller_spec.rb @@ -0,0 +1,23 @@ +require 'rails_helper' + +describe Api::V1::Accounts::ListsController do + render_views + + let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) } + let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read') } + let(:account) { Fabricate(:account) } + let(:list) { Fabricate(:list, account: user.account) } + + before do + allow(controller).to receive(:doorkeeper_token) { token } + user.account.follow!(account) + list.accounts << account + end + + describe 'GET #index' do + it 'returns http success' do + get :index, params: { account_id: account.id } + expect(response).to have_http_status(:success) + end + end +end |