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

group_deploy_key_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ba56c7e50425bc0b5f088f49d917add16169801 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

describe GroupDeployKey do
  it { is_expected.to validate_presence_of(:user) }

  it 'is of type DeployKey' do
    expect(build(:group_deploy_key).type).to eq('DeployKey')
  end
end