Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_custom_attribute_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80638676b4947679b990d15c2ef614eb02e5f2bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'spec_helper'

describe ProjectCustomAttribute do
  describe 'assocations' do
    it { is_expected.to belong_to(:project) }
  end

  describe 'validations' do
    subject { build :project_custom_attribute }

    it { is_expected.to validate_presence_of(:project) }
    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(:project_id) }
  end
end