1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-01 22:13:48 -05:00
2024-09-05 15:36:05 +00:00

11 lines
228 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Mention do
describe 'validations' do
it { is_expected.to belong_to(:account).required }
it { is_expected.to belong_to(:status).required }
end
end