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
Tatuya Kamada
gitlab-ce
Commits
671a49cf
Commit
671a49cf
authored
Nov 19, 2015
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added specs
parent
23c5473c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
0 deletions
+73
-0
spec/helpers/issues_helper_spec.rb
spec/helpers/issues_helper_spec.rb
+26
-0
spec/models/note_spec.rb
spec/models/note_spec.rb
+13
-0
spec/services/notes/create_service_spec.rb
spec/services/notes/create_service_spec.rb
+34
-0
No files found.
spec/helpers/issues_helper_spec.rb
View file @
671a49cf
...
@@ -127,4 +127,30 @@ describe IssuesHelper do
...
@@ -127,4 +127,30 @@ describe IssuesHelper do
it
{
is_expected
.
to
eq
(
"!1, !2, or !3"
)
}
it
{
is_expected
.
to
eq
(
"!1, !2, or !3"
)
}
end
end
describe
"#url_to_emoji"
do
it
"returns url"
do
expect
(
url_to_emoji
(
"smile"
)).
to
include
(
"emoji/1F604.png"
)
end
end
describe
"#emoji_list"
do
it
"returns url"
do
expect
(
emoji_list
).
to
be_kind_of
(
Array
)
end
end
describe
"#note_active_class"
do
before
do
@note
=
create
:note
@note1
=
create
:note
end
it
"returns empty string for unauthenticated user"
do
expect
(
note_active_class
(
Note
.
all
,
nil
)).
to
eq
(
""
)
end
it
"returns active string for author"
do
expect
(
note_active_class
(
Note
.
all
,
@note
.
author
)).
to
eq
(
"active"
)
end
end
end
end
spec/models/note_spec.rb
View file @
671a49cf
...
@@ -129,4 +129,17 @@ describe Note do
...
@@ -129,4 +129,17 @@ describe Note do
it
{
expect
(
Note
.
search
(
'wow'
)).
to
include
(
note
)
}
it
{
expect
(
Note
.
search
(
'wow'
)).
to
include
(
note
)
}
end
end
describe
:grouped_awards
do
before
do
create
:note
,
note:
"smile"
create
:note
,
note:
"smile"
end
it
"returns grouped array of notes"
do
grouped_array
=
Note
.
grouped_awards
expect
(
Note
.
grouped_awards
.
first
.
first
).
to
eq
(
"smile"
)
expect
(
Note
.
grouped_awards
.
first
.
last
).
to
match_array
(
Note
.
all
)
end
end
end
end
spec/services/notes/create_service_spec.rb
View file @
671a49cf
...
@@ -24,4 +24,38 @@ describe Notes::CreateService do
...
@@ -24,4 +24,38 @@ describe Notes::CreateService do
it
{
expect
(
@note
.
note
).
to
eq
(
'Awesome comment'
)
}
it
{
expect
(
@note
.
note
).
to
eq
(
'Awesome comment'
)
}
end
end
end
end
describe
"award emoji"
do
before
do
project
.
team
<<
[
user
,
:master
]
end
it
"creates emoji note"
do
opts
=
{
note:
':smile: '
,
noteable_type:
'Issue'
,
noteable_id:
issue
.
id
}
@note
=
Notes
::
CreateService
.
new
(
project
,
user
,
opts
).
execute
expect
(
@note
).
to
be_valid
expect
(
@note
.
note
).
to
eq
(
'smile'
)
expect
(
@note
.
is_award
).
to
be_truthy
end
it
"creates regular note if emoji name is invalid"
do
opts
=
{
note:
':smile: moretext: '
,
noteable_type:
'Issue'
,
noteable_id:
issue
.
id
}
@note
=
Notes
::
CreateService
.
new
(
project
,
user
,
opts
).
execute
expect
(
@note
).
to
be_valid
expect
(
@note
.
note
).
to
eq
(
opts
[
:note
])
expect
(
@note
.
is_award
).
to
be_falsy
end
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