Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
9d5c6901
Commit
9d5c6901
authored
Aug 20, 2014
by
jubianchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spec on labels validation
parent
7ad93ab2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
spec/models/label_spec.rb
spec/models/label_spec.rb
+23
-0
No files found.
spec/models/label_spec.rb
View file @
9d5c6901
...
...
@@ -5,4 +5,27 @@ describe Label do
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment