about summary refs log tree commit diff
path: root/spec/controllers/api/statuses_controller_spec.rb
blob: bd136a55987b6245bd6beda492efb2b238f23342 (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
require 'rails_helper'

RSpec.describe Api::StatusesController, type: :controller do
  describe 'GET #show' do
    it 'returns http success'
  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