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

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: 93623e8e99b851581eab10537e3c91e63fd7f24d (plain)
1
2
3
4
5
6
7
8
require 'spec_helper'

describe DeployKey, models: true do
  describe "Associations" do
    it { is_expected.to have_many(:deploy_keys_projects) }
    it { is_expected.to have_many(:projects) }
  end
end