mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 03:25:17 +01:00
Add coverage for AccountPin
validations
This commit is contained in:
parent
cfb8fc6222
commit
3d27dacf76
@ -18,7 +18,7 @@ class AccountPin < ApplicationRecord
|
||||
belongs_to :account
|
||||
belongs_to :target_account, class_name: 'Account'
|
||||
|
||||
validate :validate_follow_relationship
|
||||
validate :validate_follow_relationship, if: -> { account.present? }
|
||||
|
||||
private
|
||||
|
||||
|
33
spec/models/account_pin_spec.rb
Normal file
33
spec/models/account_pin_spec.rb
Normal file
@ -0,0 +1,33 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe AccountPin do
|
||||
describe 'Associations' do
|
||||
it { is_expected.to belong_to(:account).required }
|
||||
it { is_expected.to belong_to(:target_account).required }
|
||||
end
|
||||
|
||||
describe 'Validations' do
|
||||
describe 'the follow relationship' do
|
||||
subject { described_class.new account: account }
|
||||
|
||||
let(:account) { Fabricate :account }
|
||||
let(:target_account) { Fabricate :account }
|
||||
|
||||
context 'when account is following target account' do
|
||||
before { account.follow!(target_account) }
|
||||
|
||||
it { is_expected.to allow_value(target_account).for(:target_account).against(:base) }
|
||||
end
|
||||
|
||||
context 'when account is not following target account' do
|
||||
it { is_expected.to_not allow_value(target_account).for(:target_account).against(:base).with_message(not_following_message) }
|
||||
|
||||
def not_following_message
|
||||
I18n.t('accounts.pin_errors.following')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user