You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
488 B

  1. require 'rails_helper'
  2. RSpec.describe Api::AccountsController, type: :controller do
  3. describe 'GET #show' do
  4. it 'returns http success'
  5. end
  6. describe 'GET #statuses' do
  7. it 'returns http success'
  8. end
  9. describe 'GET #followers' do
  10. it 'returns http success'
  11. end
  12. describe 'GET #following' do
  13. it 'returns http success'
  14. end
  15. describe 'POST #follow' do
  16. it 'returns http success'
  17. end
  18. describe 'POST #unfollow' do
  19. it 'returns http success'
  20. end
  21. end