mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-16 20:22:18 +00:00
Extract target account on list method in bulk import row service spec (#29601)
This commit is contained in:
parent
838b0bdf2d
commit
e75b55a6d7
|
@ -110,7 +110,7 @@ RSpec.describe BulkImportRowService do
|
|||
end
|
||||
|
||||
it 'adds the target account to the list' do
|
||||
expect { subject.call(import_row) }.to change { ListAccount.joins(:list).exists?(account_id: target_account.id, list: { title: 'my list' }) }.from(false).to(true)
|
||||
expect { subject.call(import_row) }.to add_target_account_to_list
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -124,7 +124,7 @@ RSpec.describe BulkImportRowService do
|
|||
end
|
||||
|
||||
it 'adds the target account to the list' do
|
||||
expect { subject.call(import_row) }.to change { ListAccount.joins(:list).exists?(account_id: target_account.id, list: { title: 'my list' }) }.from(false).to(true)
|
||||
expect { subject.call(import_row) }.to add_target_account_to_list
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -134,7 +134,7 @@ RSpec.describe BulkImportRowService do
|
|||
end
|
||||
|
||||
it 'adds the target account to the list' do
|
||||
expect { subject.call(import_row) }.to change { ListAccount.joins(:list).exists?(account_id: target_account.id, list: { title: 'my list' }) }.from(false).to(true)
|
||||
expect { subject.call(import_row) }.to add_target_account_to_list
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -146,9 +146,24 @@ RSpec.describe BulkImportRowService do
|
|||
end
|
||||
|
||||
it 'adds the target account to the list' do
|
||||
expect { subject.call(import_row) }.to change { ListAccount.joins(:list).exists?(account_id: target_account.id, list: { title: 'my list' }) }.from(false).to(true)
|
||||
expect { subject.call(import_row) }.to add_target_account_to_list
|
||||
end
|
||||
end
|
||||
|
||||
def add_target_account_to_list
|
||||
change { target_account_on_list? }
|
||||
.from(false)
|
||||
.to(true)
|
||||
end
|
||||
|
||||
def target_account_on_list?
|
||||
ListAccount
|
||||
.joins(:list)
|
||||
.exists?(
|
||||
account_id: target_account.id,
|
||||
list: { title: 'my list' }
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when the list does not exist yet' do
|
||||
|
|
Loading…
Reference in a new issue