summaryrefslogtreecommitdiff
path: root/spec/models/label_link_spec.rb
blob: 0a5cb5374b045f707932c5ad95c7229f54571d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

describe LabelLink do
  it { expect(build(:label_link)).to be_valid }

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

  it_behaves_like 'a BulkInsertSafe model', LabelLink
end