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

22 lines
446 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
# == Schema Information
#
# Table name: label_links
#
# id :integer not null, primary key
# label_id :integer
# target_id :integer
# target_type :string(255)
# created_at :datetime
# updated_at :datetime
#
2014-09-02 18:07:02 +05:30
require 'spec_helper'
describe LabelLink do
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