0
0
Fork 0

Simplify basic presence validations (#29664)

This commit is contained in:
Matt Jankowski 2024-09-05 11:36:05 -04:00 committed by GitHub
parent bc435c63bd
commit 5acec087ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 28 additions and 159 deletions

View file

@ -4,17 +4,8 @@ require 'rails_helper'
RSpec.describe Block do
describe 'validations' do
it 'is invalid without an account' do
block = Fabricate.build(:block, account: nil)
block.valid?
expect(block).to model_have_error_on_field(:account)
end
it 'is invalid without a target_account' do
block = Fabricate.build(:block, target_account: nil)
block.valid?
expect(block).to model_have_error_on_field(:target_account)
end
it { is_expected.to belong_to(:account).required }
it { is_expected.to belong_to(:target_account).required }
end
it 'removes blocking cache after creation' do