mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 11:11:11 +02:00
13 lines
266 B
Ruby
13 lines
266 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe StatusTrend do
|
|
it_behaves_like 'RankedTrend'
|
|
|
|
describe 'Associations' do
|
|
it { is_expected.to belong_to(:account).required }
|
|
it { is_expected.to belong_to(:status).required }
|
|
end
|
|
end
|