2016-03-01 05:42:08 +11:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AccountsController, type: :controller do
|
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2016-03-20 00:02:30 +11:00
|
|
|
it 'returns http success' do
|
2016-08-18 01:56:23 +10:00
|
|
|
get :show, params: { username: alice.username }
|
2016-03-01 05:42:08 +11:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
2016-03-20 00:02:30 +11:00
|
|
|
it 'returns http success with Atom' do
|
2016-08-18 01:56:23 +10:00
|
|
|
get :show, params: { username: alice.username }, format: 'atom'
|
2016-03-01 05:42:08 +11:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2016-03-20 00:02:30 +11:00
|
|
|
|
|
|
|
describe 'GET #followers' do
|
|
|
|
it 'returns http success' do
|
2016-08-18 01:56:23 +10:00
|
|
|
get :followers, params: { username: alice.username }
|
2016-03-20 00:02:30 +11:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #following' do
|
|
|
|
it 'returns http success' do
|
2016-08-18 01:56:23 +10:00
|
|
|
get :following, params: { username: alice.username }
|
2016-03-20 00:02:30 +11:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|