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