Consolidate system specs into single directory, use rspec tags for configuration (#30206)
This commit is contained in:
parent
164b09bfcc
commit
0d397db5dd
30 changed files with 32 additions and 47 deletions
24
spec/system/severed_relationships_spec.rb
Normal file
24
spec/system/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