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

10 lines
222 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2015-12-23 02:04:40 +05:30
describe LabelLink, models: true do
2014-09-02 18:07:02 +05:30
let(:label) { create(:label_link) }
2015-04-26 12:48:37 +05:30
it { expect(label).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