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
|
2017-04-05 00:29:56 +02:00
|
|
|
describe 'validations' do
|
|
|
|
it 'is invalid without an account' do
|
|
|
|
mention = Fabricate.build(:mention, account: nil)
|
|
|
|
mention.valid?
|
|
|
|
expect(mention).to model_have_error_on_field(:account)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is invalid without a status' do
|
|
|
|
mention = Fabricate.build(:mention, status: nil)
|
|
|
|
mention.valid?
|
|
|
|
expect(mention).to model_have_error_on_field(:status)
|
|
|
|
end
|
|
|
|
end
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|