2019-04-27 10:24:04 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Relationship do
|
|
|
|
subject { create :supporter_relationship }
|
|
|
|
|
2019-07-20 06:07:02 -04:00
|
|
|
describe '#person' do
|
2019-07-20 08:16:48 -04:00
|
|
|
it do
|
|
|
|
is_expected.to belong_to(:person).inverse_of(:all_relationships).required
|
|
|
|
end
|
2019-07-20 06:07:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#regional_office' do
|
2019-07-20 07:56:26 -04:00
|
|
|
it do
|
|
|
|
is_expected.to \
|
|
|
|
belong_to(:regional_office).inverse_of(:all_relationships).required
|
|
|
|
end
|
2019-07-20 06:07:02 -04:00
|
|
|
end
|
2019-04-28 08:48:51 -04:00
|
|
|
|
2019-07-20 02:22:47 -04:00
|
|
|
describe '#from_date' do
|
|
|
|
it { is_expected.to validate_presence_of :from_date }
|
2019-04-28 09:24:01 -04:00
|
|
|
|
|
|
|
it do
|
|
|
|
is_expected.to \
|
2019-07-20 02:22:47 -04:00
|
|
|
validate_uniqueness_of(:from_date)
|
2019-07-20 02:02:32 -04:00
|
|
|
.scoped_to(:person_id)
|
2019-04-28 09:24:01 -04:00
|
|
|
end
|
|
|
|
end
|
2019-06-04 21:37:55 -04:00
|
|
|
|
2019-06-04 22:33:45 -04:00
|
|
|
describe '#status' do
|
|
|
|
it { is_expected.to validate_presence_of :status }
|
|
|
|
end
|
2019-07-20 05:12:58 -04:00
|
|
|
|
|
|
|
describe '#role' do
|
2019-07-21 22:30:58 -04:00
|
|
|
def allow_value(*)
|
|
|
|
super.for :role
|
|
|
|
end
|
|
|
|
|
2019-07-20 05:12:58 -04:00
|
|
|
context 'for supporter relationship' do
|
|
|
|
subject { create :supporter_relationship }
|
|
|
|
|
2019-07-21 22:30:58 -04:00
|
|
|
it { is_expected.to allow_value nil }
|
|
|
|
it { is_expected.not_to allow_value described_class.roles.keys.sample }
|
2019-07-20 05:12:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for excluded supporter relationship' do
|
|
|
|
subject { create :excluded_supporter_relationship }
|
|
|
|
|
2019-07-21 22:30:58 -04:00
|
|
|
it { is_expected.to allow_value nil }
|
|
|
|
it { is_expected.not_to allow_value described_class.roles.keys.sample }
|
2019-07-20 05:12:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for excluded member relationship' do
|
|
|
|
subject { create :excluded_member_relationship }
|
|
|
|
|
2019-07-21 22:30:58 -04:00
|
|
|
it { is_expected.to allow_value nil }
|
|
|
|
it { is_expected.not_to allow_value described_class.roles.keys.sample }
|
2019-07-20 05:12:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for member relationship' do
|
|
|
|
subject { create :member_relationship }
|
|
|
|
|
2019-07-21 22:30:58 -04:00
|
|
|
it { is_expected.to allow_value nil }
|
|
|
|
it { is_expected.to allow_value described_class.roles.keys.sample }
|
2019-07-20 05:12:58 -04:00
|
|
|
end
|
|
|
|
end
|
2019-04-27 10:24:04 -04:00
|
|
|
end
|