require 'rails_helper'

RSpec.describe User, type: :model do
  subject { build(:user) }

  it { is_expected.to be_valid }

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