summaryrefslogtreecommitdiff
path: root/spec/models/label_link_spec.rb
blob: b160e72e75962598f700b8493f95124cbb67b118 (plain)
1
2
3
4
5
6
7
8
9
10
# 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) }
end