about summary refs log tree commit diff
path: root/spec/controllers/api/v1/polls_controller_spec.rb
blob: 2b8d5f3ef543437391a7b5d73fe0c37c0c7ccee2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rails_helper'

RSpec.describe Api::V1::PollsController, type: :controller do
  render_views

  let(:user)   { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  let(:scopes) { 'read:statuses' }
  let(:token)  { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }

  before { allow(controller).to receive(:doorkeeper_token) { token } }

  describe 'GET #show' do
    let(:poll) { Fabricate(:poll) }

    before do
      get :show, params: { id: poll.id }
    end

    it 'returns http success' do
      expect(response).to have_http_status(200)
    end
  end
end