Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ingress_spec.rb « applications « clusters « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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