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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
669ada92
Commit
669ada92
authored
Jul 29, 2013
by
Javier Castro
Committed by
Javier Castro
Jul 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test case for notification_service
parent
cb877b7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
spec/services/notification_service_spec.rb
spec/services/notification_service_spec.rb
+18
-18
No files found.
spec/services/notification_service_spec.rb
View file @
669ada92
...
...
@@ -48,7 +48,7 @@ describe NotificationService do
end
context
'commit note'
do
let
(
:note
)
{
create
(
:note_on_commit
,
note:
'@mention referenced'
)
}
let
(
:note
)
{
create
(
:note_on_commit
)
}
before
do
build_team
(
note
.
project
)
...
...
@@ -56,35 +56,35 @@ describe NotificationService do
describe
:new_note
do
it
do
should_email
(
@u_watcher
.
id
)
should_
email
(
@u_mentioned
.
id
)
should_not_email
(
note
.
author_id
)
should_not_email
(
@u_participating
.
id
)
should_not_email
(
@u_disabled
.
id
)
should_email
(
@u_watcher
.
id
,
note
)
should_
not_email
(
@u_mentioned
.
id
,
note
)
should_not_email
(
note
.
author_id
,
note
)
should_not_email
(
@u_participating
.
id
,
note
)
should_not_email
(
@u_disabled
.
id
,
note
)
notification
.
new_note
(
note
)
end
it
do
create
(
:note_on_commit
,
new_note
=
create
(
:note_on_commit
,
author:
@u_participating
,
project_id:
note
.
project_id
,
commit_id:
note
.
commit_id
,
note:
'@mention referenced'
)
should_email
(
@u_watcher
.
id
)
should_email
(
@u_
participating
.
id
)
should_
email
(
@u_mentioned
.
id
)
should_not_email
(
note
.
author_id
)
should_not_email
(
@u_disabled
.
id
)
notification
.
new_note
(
note
)
should_email
(
@u_watcher
.
id
,
new_note
)
should_email
(
@u_
mentioned
.
id
,
new_note
)
should_
not_email
(
new_note
.
author_id
,
new_note
)
should_not_email
(
@u_participating
.
id
,
new_note
)
should_not_email
(
@u_disabled
.
id
,
new_note
)
notification
.
new_note
(
n
ew_n
ote
)
end
def
should_email
(
user_id
)
Notify
.
should_receive
(
:note_commit_email
).
with
(
user_id
,
n
ote
.
id
)
def
should_email
(
user_id
,
n
)
Notify
.
should_receive
(
:note_commit_email
).
with
(
user_id
,
n
.
id
)
end
def
should_not_email
(
user_id
)
Notify
.
should_not_receive
(
:note_commit_email
).
with
(
user_id
,
n
ote
.
id
)
def
should_not_email
(
user_id
,
n
)
Notify
.
should_not_receive
(
:note_commit_email
).
with
(
user_id
,
n
.
id
)
end
end
end
...
...
@@ -239,7 +239,7 @@ describe NotificationService do
@u_watcher
=
create
(
:user
,
notification_level:
Notification
::
N_WATCH
)
@u_participating
=
create
(
:user
,
notification_level:
Notification
::
N_PARTICIPATING
)
@u_disabled
=
create
(
:user
,
notification_level:
Notification
::
N_DISABLED
)
@u_mentioned
=
create
(
:user
,
username:
'mention'
,
notification_level:
Notification
::
N_
WATCH
)
@u_mentioned
=
create
(
:user
,
username:
'mention'
,
notification_level:
Notification
::
N_
PARTICIPATING
)
project
.
team
<<
[
@u_watcher
,
:master
]
project
.
team
<<
[
@u_participating
,
:master
]
...
...
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