summaryrefslogtreecommitdiff
path: root/spec/models/clusters/project_spec.rb
blob: 2f017e69251869831e5ab3c41bda904d21fa017d (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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