about summary refs log tree commit diff
path: root/spec/controllers/api/accounts_controller_spec.rb
blob: 915a40a8a4f5c7aa087fe1954eb4052c7de01371 (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::AccountsController, type: :controller do
  describe 'GET #show' do
    it 'returns http success'
  end

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

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

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

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

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