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
d4861ec7
Commit
d4861ec7
authored
Apr 19, 2017
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add spec and changelog
parent
1c6710e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
changelogs/unreleased/fix-orphan-notification-settings.yml
changelogs/unreleased/fix-orphan-notification-settings.yml
+4
-0
spec/services/groups/destroy_service_spec.rb
spec/services/groups/destroy_service_spec.rb
+2
-0
No files found.
changelogs/unreleased/fix-orphan-notification-settings.yml
0 → 100644
View file @
d4861ec7
---
title
:
Removed orphaned notification settings without a namespace
merge_request
:
author
:
spec/services/groups/destroy_service_spec.rb
View file @
d4861ec7
...
...
@@ -7,6 +7,7 @@ describe Groups::DestroyService, services: true do
let!
(
:group
)
{
create
(
:group
)
}
let!
(
:nested_group
)
{
create
(
:group
,
parent:
group
)
}
let!
(
:project
)
{
create
(
:empty_project
,
namespace:
group
)
}
let!
(
:notification_setting
)
{
create
(
:notification_setting
,
source:
group
)}
let!
(
:gitlab_shell
)
{
Gitlab
::
Shell
.
new
}
let!
(
:remove_path
)
{
group
.
path
+
"+
#{
group
.
id
}
+deleted"
}
...
...
@@ -23,6 +24,7 @@ describe Groups::DestroyService, services: true do
it
{
expect
(
Group
.
unscoped
.
all
).
not_to
include
(
group
)
}
it
{
expect
(
Group
.
unscoped
.
all
).
not_to
include
(
nested_group
)
}
it
{
expect
(
Project
.
unscoped
.
all
).
not_to
include
(
project
)
}
it
{
expect
(
NotificationSetting
.
unscoped
.
all
).
not_to
include
(
notification_setting
)
}
end
context
'file system'
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