debian-mirror-gitlab/spec/models/user_detail_spec.rb
2020-04-08 14:13:33 +05:30

15 lines
333 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe UserDetail do
it { is_expected.to belong_to(:user) }
describe 'validations' do
describe 'job_title' do
it { is_expected.not_to validate_presence_of(:job_title) }
it { is_expected.to validate_length_of(:job_title).is_at_most(200) }
end
end
end