summaryrefslogtreecommitdiff
path: root/spec/models/clusters/applications/ingress_spec.rb
blob: 619c088b0bf3ac3cb421f2425492e93479096454 (plain)
1
2
3
4
5
6
7
8
require 'rails_helper'

describe Clusters::Applications::Ingress do
  it { is_expected.to belong_to(:cluster) }
  it { is_expected.to validate_presence_of(:cluster) }

  include_examples 'cluster application specs', described_class
end