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

project_spec.rb « clusters « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82ef5a23c18ce4d1ad7384ece680fb64e23f3d6f (plain)
1
2
3
4
5
6
7
8
require 'spec_helper'

describe Clusters::Project do
  it { is_expected.to belong_to(:cluster) }
  it { is_expected.to belong_to(:project) }
  it { is_expected.to have_many(:kubernetes_namespaces) }
  it { is_expected.to have_one(:kubernetes_namespace) }
end