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/relationship_spec.rb

25 lines
543 B
Ruby
Raw Normal View History

2019-04-27 14:24:04 +00:00
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Relationship do
subject { create :supporter_relationship }
it { is_expected.to belong_to(:person).required }
2019-04-28 12:48:51 +00:00
it { is_expected.to belong_to(:regional_office).required }
describe '#from_date' do
it { is_expected.to validate_presence_of :from_date }
2019-04-28 13:24:01 +00:00
it do
is_expected.to \
validate_uniqueness_of(:from_date)
2019-07-20 06:02:32 +00:00
.scoped_to(:person_id)
2019-04-28 13:24:01 +00:00
end
end
2019-06-05 02:33:45 +00:00
describe '#status' do
it { is_expected.to validate_presence_of :status }
end
2019-04-27 14:24:04 +00:00
end