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