2016-03-07 12:42:33 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::AccountsController, type: :controller do
|
2016-03-19 12:13:47 +01:00
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success'
|
|
|
|
end
|
2016-03-07 12:42:33 +01:00
|
|
|
|
2016-03-19 12:13:47 +01:00
|
|
|
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
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|