2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Clusters::Project do
|
|
|
|
it { is_expected.to belong_to(:cluster) }
|
|
|
|
it { is_expected.to belong_to(:project) }
|
2018-12-13 13:39:08 +05:30
|
|
|
it { is_expected.to have_many(:kubernetes_namespaces) }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|