summaryrefslogtreecommitdiff
path: root/spec/models/label_link_spec.rb
blob: dc7510b1de305aeb100608a3b682b2f2a07bebda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# == 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
#

require 'spec_helper'

describe LabelLink, models: true do
  let(:label) { create(:label_link) }
  it { expect(label).to be_valid }

  it { is_expected.to belong_to(:label) }
  it { is_expected.to belong_to(:target) }
end