ddccd24c13
Signed-off-by: Rémy Coutable <remy@rymai.me>
8 lines
183 B
Ruby
8 lines
183 B
Ruby
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
|