2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-29 14:48:45 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Clusters::Project do
|
2017-10-29 14:48:45 -04:00
|
|
|
it { is_expected.to belong_to(:cluster) }
|
|
|
|
it { is_expected.to belong_to(:project) }
|
2018-10-16 16:03:59 -04:00
|
|
|
it { is_expected.to have_many(:kubernetes_namespaces) }
|
2017-10-29 14:48:45 -04:00
|
|
|
end
|