23 lines
445 B
Ruby
23 lines
445 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe PersonComment do
|
||
|
subject { create :person_comment }
|
||
|
|
||
|
it { is_expected.to belong_to(:person).required }
|
||
|
|
||
|
it { is_expected.to belong_to(:account).optional }
|
||
|
|
||
|
describe '#text' do
|
||
|
it { is_expected.to validate_presence_of :text }
|
||
|
|
||
|
it do
|
||
|
is_expected.to \
|
||
|
validate_length_of(:text)
|
||
|
.is_at_least(1)
|
||
|
.is_at_most(10_000)
|
||
|
end
|
||
|
end
|
||
|
end
|