debian-mirror-gitlab/spec/models/namespace_ci_cd_setting_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
208 B
Ruby
Raw Normal View History

2022-07-16 23:28:13 +05:30
# 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