2024-10-29 11:46:32 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe StatusTrend do
|
2024-12-01 19:44:14 -05:00
|
|
|
include_examples 'RankedTrend'
|
|
|
|
|
2024-10-29 11:46:32 -04:00
|
|
|
describe 'Associations' do
|
|
|
|
it { is_expected.to belong_to(:account).required }
|
|
|
|
it { is_expected.to belong_to(:status).required }
|
|
|
|
end
|
|
|
|
end
|