1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-03 01:08:23 +09:00
mastodon/spec/models/mention_spec.rb

11 lines
228 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-25 08:17:01 +09:00
require 'rails_helper'
RSpec.describe Mention do
2017-04-05 07:29:56 +09:00
describe 'validations' do
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