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