debian-mirror-gitlab/spec/models/label_link_spec.rb
2019-07-07 11:18:12 +05:30

11 lines
214 B
Ruby

# 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