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

namespace_ci_cd_setting_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9031d45221a48adc65a58afda9f32b66d5c5147f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe NamespaceCiCdSetting do
  describe "associations" do
    it { is_expected.to belong_to(:namespace).inverse_of(:ci_cd_settings) }
  end
end