2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 23:17:01 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 03:49:53 +00:00
|
|
|
RSpec.describe Mention do
|
2017-04-04 22:29:56 +00:00
|
|
|
describe 'validations' do
|
2024-09-05 15:36:05 +00:00
|
|
|
it { is_expected.to belong_to(:account).required }
|
|
|
|
it { is_expected.to belong_to(:status).required }
|
2017-04-04 22:29:56 +00:00
|
|
|
end
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|