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

9 lines
183 B
Ruby
Raw Normal View History

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) }
2014-09-02 18:07:02 +05:30
end