92deb451da
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: labels
|
|
#
|
|
# id :integer not null, primary key
|
|
# title :string(255)
|
|
# color :string(255)
|
|
# project_id :integer
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
#
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Label do
|
|
let(:label) { create(:label) }
|
|
it { label.should be_valid }
|
|
|
|
it { should belong_to(:project) }
|
|
|
|
describe 'Validation' do
|
|
it 'should validate color code' do
|
|
build(:label, color: 'G-ITLAB').should_not be_valid
|
|
build(:label, color: 'AABBCC').should_not be_valid
|
|
build(:label, color: '#AABBCCEE').should_not be_valid
|
|
build(:label, color: '#GGHHII').should_not be_valid
|
|
build(:label, color: '#').should_not be_valid
|
|
build(:label, color: '').should_not be_valid
|
|
|
|
build(:label, color: '#AABBCC').should be_valid
|
|
end
|
|
|
|
it 'should validate title' do
|
|
build(:label, title: 'G,ITLAB').should_not be_valid
|
|
build(:label, title: 'G?ITLAB').should_not be_valid
|
|
build(:label, title: 'G&ITLAB').should_not be_valid
|
|
build(:label, title: '').should_not be_valid
|
|
|
|
build(:label, title: 'GITLAB').should be_valid
|
|
build(:label, title: 'gitlab').should be_valid
|
|
end
|
|
end
|
|
end
|