mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-16 16:16:43 +10:00
10 lines
188 B
Ruby
10 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
|