mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-18 08:01:57 +01:00
19 lines
420 B
Ruby
19 lines
420 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin Follow Recommendations' do
|
|
let(:user) { Fabricate(:admin_user) }
|
|
|
|
before { sign_in(user) }
|
|
|
|
describe 'Viewing follow recommendations details' do
|
|
it 'shows a list of accounts' do
|
|
visit admin_follow_recommendations_path
|
|
|
|
expect(page)
|
|
.to have_content(I18n.t('admin.follow_recommendations.title'))
|
|
end
|
|
end
|
|
end
|