mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
9 lines
199 B
Ruby
9 lines
199 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe RelatedCategory do
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:category) }
|
|
it { is_expected.to belong_to(:related_category) }
|
|
end
|
|
end
|