gitlab-org--gitlab-foss/spec/models/label_link_spec.rb

11 lines
214 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe LabelLink do
it { expect(build(:label_link)).to be_valid }
it { is_expected.to belong_to(:label) }
it { is_expected.to belong_to(:target) }
end