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
1ea28c1e
Commit
1ea28c1e
authored
Sep 23, 2021
by
Mehmet Emin INAC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use FactoryBot.create instead of building objects and saving them
parent
817cb54a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
spec/models/namespace_spec.rb
spec/models/namespace_spec.rb
+3
-3
No files found.
spec/models/namespace_spec.rb
View file @
1ea28c1e
...
...
@@ -434,9 +434,9 @@ RSpec.describe Namespace do
end
describe
'.search'
do
let_it_be
(
:first_group
)
{
build
(
:group
,
name:
'my first namespace'
,
path:
'old-path'
).
tap
(
&
:save!
)
}
let_it_be
(
:parent_group
)
{
build
(
:group
,
name:
'my parent namespace'
,
path:
'parent-path'
).
tap
(
&
:save!
)
}
let_it_be
(
:second_group
)
{
build
(
:group
,
name:
'my second namespace'
,
path:
'new-path'
,
parent:
parent_group
).
tap
(
&
:save!
)
}
let_it_be
(
:first_group
)
{
create
(
:group
,
name:
'my first namespace'
,
path:
'old-path'
)
}
let_it_be
(
:parent_group
)
{
create
(
:group
,
name:
'my parent namespace'
,
path:
'parent-path'
)
}
let_it_be
(
:second_group
)
{
create
(
:group
,
name:
'my second namespace'
,
path:
'new-path'
,
parent:
parent_group
)
}
let_it_be
(
:project_with_same_path
)
{
create
(
:project
,
id:
second_group
.
id
,
path:
first_group
.
path
)
}
it
'returns namespaces with a matching name'
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