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

16 lines
453 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
2014-09-02 18:07:02 +05:30
end