1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/spec/models/regional_office_spec.rb

26 lines
544 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe RegionalOffice do
subject { create :regional_office }
it { is_expected.to belong_to :country_state }
it { is_expected.to have_many(:people).dependent(:restrict_with_exception) }
it do
is_expected.to \
have_many(:relationships)
.dependent(:restrict_with_exception)
end
it do
is_expected.to \
validate_presence_of(:country_state)
.with_message(:required)
end
it { is_expected.to validate_uniqueness_of :country_state }
end