mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 23:20:44 +01:00
10 lines
228 B
Ruby
10 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
|