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
Boxiang Sun
gitlab-ce
Commits
e63d27d8
Commit
e63d27d8
authored
May 24, 2017
by
winh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add failing test for #32728
parent
b00c268b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
spec/models/label_spec.rb
spec/models/label_spec.rb
+17
-0
No files found.
spec/models/label_spec.rb
View file @
e63d27d8
...
@@ -49,6 +49,23 @@ describe Label, models: true do
...
@@ -49,6 +49,23 @@ describe Label, models: true do
expect
(
label
.
color
).
to
eq
(
'#abcdef'
)
expect
(
label
.
color
).
to
eq
(
'#abcdef'
)
end
end
it
'uses default color if color is missing'
do
label
=
described_class
.
new
(
color:
nil
)
expect
(
label
.
color
).
to
be
(
Label
::
DEFAULT_COLOR
)
end
end
describe
'#text_color'
do
it
'uses default color if color is missing'
do
expect
(
LabelsHelper
).
to
receive
(
:text_color_for_bg
).
with
(
Label
::
DEFAULT_COLOR
).
and_return
(
spy
)
label
=
described_class
.
new
(
color:
nil
)
label
.
text_color
end
end
end
describe
'#title'
do
describe
'#title'
do
...
...
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