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.
17 lines
328 B
17 lines
328 B
8 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe RemoteFollowController do
|
||
|
render_views
|
||
|
|
||
|
describe '#new' do
|
||
|
it 'returns a success' do
|
||
|
account = Fabricate(:account)
|
||
|
get :new, params: { account_username: account.to_param }
|
||
|
|
||
|
expect(response).to have_http_status(:success)
|
||
|
end
|
||
|
end
|
||
|
end
|