Improve specs for severed relationships (#29688)
This commit is contained in:
parent
37ca59815c
commit
81a04ac25c
3 changed files with 28 additions and 25 deletions
24
spec/features/severed_relationships_spec.rb
Normal file
24
spec/features/severed_relationships_spec.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe 'Severed relationships page' do
|
||||
include ProfileStories
|
||||
|
||||
describe 'GET severed_relationships#index' do
|
||||
before do
|
||||
as_a_logged_in_user
|
||||
|
||||
event = Fabricate(:relationship_severance_event)
|
||||
Fabricate.times(3, :severed_relationship, local_account: bob.account, relationship_severance_event: event)
|
||||
Fabricate(:account_relationship_severance_event, account: bob.account, relationship_severance_event: event)
|
||||
end
|
||||
|
||||
it 'returns http success' do
|
||||
visit severed_relationships_path
|
||||
|
||||
expect(page).to have_title(I18n.t('settings.severed_relationships'))
|
||||
expect(page).to have_link(href: following_severed_relationship_path(AccountRelationshipSeveranceEvent.first, format: :csv))
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue