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
e9638d8a
Commit
e9638d8a
authored
Nov 03, 2020
by
Alex Kalderimis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing spec
parent
16b56a72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
spec/graphql/resolvers/design_management/designs_resolver_spec.rb
...phql/resolvers/design_management/designs_resolver_spec.rb
+16
-0
No files found.
spec/graphql/resolvers/design_management/designs_resolver_spec.rb
View file @
e9638d8a
...
...
@@ -65,6 +65,22 @@ RSpec.describe Resolvers::DesignManagement::DesignsResolver do
let
(
:second_version
)
{
create
(
:design_version
)
}
let
(
:second_design
)
{
create
(
:design
,
issue:
issue
,
versions:
[
second_version
])
}
context
'ids is provided but null'
do
let
(
:args
)
{
{
ids:
nil
}
}
it
'behaves as if unfiltered'
do
expect
(
resolve_designs
).
to
contain_exactly
(
first_design
,
second_design
)
end
end
context
'ids is provided but empty'
do
let
(
:args
)
{
{
ids:
[]
}
}
it
'eliminates all values'
do
expect
(
resolve_designs
).
to
be_empty
end
end
context
'the ID is on the current issue'
do
let
(
:args
)
{
{
ids:
[
GitlabSchema
.
id_from_object
(
second_design
)]
}
}
...
...
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