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
2f0c73ed
Commit
2f0c73ed
authored
Nov 18, 2020
by
Thong Kuah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Autocorrect keyword warning
parent
0d846f03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/graphql/mutations/boards/lists/create_spec.rb
spec/graphql/mutations/boards/lists/create_spec.rb
+2
-2
No files found.
spec/graphql/mutations/boards/lists/create_spec.rb
View file @
2f0c73ed
...
...
@@ -23,12 +23,12 @@ RSpec.describe Mutations::Boards::Lists::Create do
describe
'#ready?'
do
it
'raises an error if required arguments are missing'
do
expect
{
mutation
.
ready?
(
{
board_id:
'some id'
}
)
}
expect
{
mutation
.
ready?
(
board_id:
'some id'
)
}
.
to
raise_error
(
Gitlab
::
Graphql
::
Errors
::
ArgumentError
,
/one and only one of/
)
end
it
'raises an error if too many required arguments are specified'
do
expect
{
mutation
.
ready?
(
{
board_id:
'some id'
,
backlog:
true
,
label_id:
'some label'
}
)
}
expect
{
mutation
.
ready?
(
board_id:
'some id'
,
backlog:
true
,
label_id:
'some label'
)
}
.
to
raise_error
(
Gitlab
::
Graphql
::
Errors
::
ArgumentError
,
/one and only one of/
)
end
end
...
...
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