gitlab-org--gitlab-foss/spec/models/user_custom_attribute_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
494 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-09-28 16:49:42 +00:00
require 'spec_helper'
RSpec.describe UserCustomAttribute do
2017-09-28 16:49:42 +00:00
describe 'assocations' do
it { is_expected.to belong_to(:user) }
end
describe 'validations' do
subject { build :user_custom_attribute }
it { is_expected.to validate_presence_of(:user_id) }
it { is_expected.to validate_presence_of(:key) }
it { is_expected.to validate_presence_of(:value) }
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:user_id) }
end
end