2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
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
|