mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
10 lines
240 B
Ruby
10 lines
240 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.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) }
|
|
end
|