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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
5de2035c
Commit
5de2035c
authored
Jun 21, 2018
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use expect_next_instance_of to replace expect_any_instance_of
parent
e446e871
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
spec/services/users/destroy_service_spec.rb
spec/services/users/destroy_service_spec.rb
+6
-2
No files found.
spec/services/users/destroy_service_spec.rb
View file @
5de2035c
...
...
@@ -19,7 +19,9 @@ describe Users::DestroyService do
end
it
'will delete the project'
do
expect_any_instance_of
(
Projects
::
DestroyService
).
to
receive
(
:execute
).
once
expect_next_instance_of
(
Projects
::
DestroyService
)
do
|
destroy_service
|
expect
(
destroy_service
).
to
receive
(
:execute
).
once
end
service
.
execute
(
user
)
end
...
...
@@ -32,7 +34,9 @@ describe Users::DestroyService do
end
it
'destroys a project in pending_delete'
do
expect_any_instance_of
(
Projects
::
DestroyService
).
to
receive
(
:execute
).
once
expect_next_instance_of
(
Projects
::
DestroyService
)
do
|
destroy_service
|
expect
(
destroy_service
).
to
receive
(
:execute
).
once
end
service
.
execute
(
user
)
...
...
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