Welcome to mirror list, hosted at ThFree Co, Russian Federation.

label_link_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2b49bc2de7c9b666ade993c30b1df2a0ae7288a (plain)
1
2
3
4
5
6
7
8
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