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