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