require 'rails_helper'

RSpec.describe Service::Requirement, type: :model do
  subject { build(:service_requirement) }

  it { is_expected.to be_valid }

  describe 'associations' do
    it { should belong_to(:school) }
  end

  describe 'validations' do
    it { should validate_presence_of(:student_hours) }
    it { should validate_presence_of(:family_hours) }
  end
end
