about summary refs log tree commit diff
path: root/spec/controllers/api/statuses_controller_spec.rb
blob: 75a8b999a3ac25096b8d8ebf46fdc63efc640225 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require 'rails_helper'

RSpec.describe Api::StatusesController, type: :controller do
  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  let(:token) { double acceptable?: true, resource_owner_id: user.id }

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

  describe 'GET #show' do
    let(:status) { Fabricate(:status, account: user.account) }

    it 'returns http success' do
      get :show, id: status.id
      expect(response).to have_http_status(:success)
    end
  end

  describe 'GET #home' do
    it 'returns http success'
  end

  describe 'GET #mentions' do
    it 'returns http success'
  end

  describe 'POST #create' do
    it 'returns http success'
  end

  describe 'POST #reblog' do
    it 'returns http success'
  end

  describe 'POST #favourite' do
    it 'returns http success'
  end
end