2020-03-03 04:07:54 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe UserDetail do
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
describe 'job_title' do
|
2020-03-04 16:07:54 -05:00
|
|
|
it { is_expected.not_to validate_presence_of(:job_title) }
|
2020-03-03 04:07:54 -05:00
|
|
|
it { is_expected.to validate_length_of(:job_title).is_at_most(200) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|