2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-25 00:17:01 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
RSpec.describe Mention do
|
2024-12-10 16:45:13 +01:00
|
|
|
describe 'Associations' do
|
2024-09-05 17:36:05 +02:00
|
|
|
it { is_expected.to belong_to(:account).required }
|
|
|
|
it { is_expected.to belong_to(:status).required }
|
2017-04-05 00:29:56 +02:00
|
|
|
end
|
2024-12-10 16:45:13 +01:00
|
|
|
|
|
|
|
describe 'Validations' do
|
|
|
|
subject { Fabricate.build :mention }
|
|
|
|
|
|
|
|
it { is_expected.to validate_uniqueness_of(:account_id).scoped_to(:status_id) }
|
|
|
|
end
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|