Chatwoot/spec/models/label_spec.rb
2020-06-07 11:17:13 +05:30

7 lines
147 B
Ruby

require 'rails_helper'
RSpec.describe Label, type: :model do
describe 'associations' do
it { is_expected.to belong_to(:account) }
end
end