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

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

27 lines
801 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe LabelLink do
2016-11-03 12:29:30 +05:30
it { expect(build(:label_link)).to be_valid }
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
it { is_expected.to belong_to(:label) }
it { is_expected.to belong_to(:target) }
2020-03-13 15:44:24 +05:30
2020-04-08 14:13:33 +05:30
it_behaves_like 'a BulkInsertSafe model', LabelLink do
let(:valid_items_for_bulk_insertion) { build_list(:label_link, 10) }
let(:invalid_items_for_bulk_insertion) { [] } # class does not have any validations defined
end
2021-06-08 01:23:25 +05:30
2021-09-04 01:27:46 +05:30
describe '.for_target' do
it 'returns the label links for a given target' do
label_link = create(:label_link, target: create(:merge_request))
2021-06-08 01:23:25 +05:30
2021-09-04 01:27:46 +05:30
create(:label_link, target: create(:issue))
2021-06-08 01:23:25 +05:30
2021-09-04 01:27:46 +05:30
expect(described_class.for_target(label_link.target_id, label_link.target_type))
.to contain_exactly(label_link)
2021-06-08 01:23:25 +05:30
end
end
2014-09-02 18:07:02 +05:30
end