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

13 lines
269 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'
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-09 13:42:32 +05:30
it_behaves_like 'a BulkInsertSafe model', LabelLink
2014-09-02 18:07:02 +05:30
end