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

11 lines
214 B
Ruby
Raw Normal View History

2019-05-18 00:54:41 +05:30
# frozen_string_literal: true
2014-09-02 14:37:02 +02:00
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 14:37:02 +02:00
2015-04-26 09:18:37 +02:00
it { is_expected.to belong_to(:label) }
it { is_expected.to belong_to(:target) }
2014-09-02 14:37:02 +02:00
end