blob: 5e6f8ca1528151ade39081c01ffcf8bc58e3a755 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|