03654a6abf
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
9 lines
188 B
Ruby
9 lines
188 B
Ruby
require 'spec_helper'
|
|
|
|
describe LabelLink do
|
|
let(:label) { create(:label_link) }
|
|
it { label.should be_valid }
|
|
|
|
it { should belong_to(:label) }
|
|
it { should belong_to(:target) }
|
|
end
|