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
Boxiang Sun
gitlab-ce
Commits
0d7ea0b3
Commit
0d7ea0b3
authored
Aug 14, 2018
by
Andreas Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce number of model instances needed in test.
Closes #49788.
parent
b8b1c0e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/models/internal_id_spec.rb
spec/models/internal_id_spec.rb
+2
-2
No files found.
spec/models/internal_id_spec.rb
View file @
0d7ea0b3
...
...
@@ -30,7 +30,7 @@ describe InternalId do
context
'with existing issues'
do
before
do
rand
(
1
..
10
).
times
{
create
(
:issue
,
project:
project
)
}
create_list
(
:issue
,
2
,
project:
project
)
described_class
.
delete_all
end
...
...
@@ -54,7 +54,7 @@ describe InternalId do
end
it
'generates a strictly monotone, gapless sequence'
do
seq
=
(
0
..
rand
(
100
)
).
map
do
seq
=
Array
.
new
(
10
).
map
do
described_class
.
generate_next
(
issue
,
scope
,
usage
,
init
)
end
normalized
=
seq
.
map
{
|
i
|
i
-
seq
.
min
}
...
...
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