mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-03 03:43:28 +03:00
Snake case formatting fix
This commit is contained in:
parent
19d5558ed7
commit
34db851230
|
@ -128,7 +128,7 @@ class GraphQLTestMixin:
|
||||||
)
|
)
|
||||||
self.client = client
|
self.client = client
|
||||||
|
|
||||||
def assertResponseNoErrors(self, resp, msg=None):
|
def assert_response_no_errors(self, resp, msg=None):
|
||||||
"""
|
"""
|
||||||
Assert that the call went through correctly. 200 means the syntax is ok, if there are no `errors`,
|
Assert that the call went through correctly. 200 means the syntax is ok, if there are no `errors`,
|
||||||
the call was fine.
|
the call was fine.
|
||||||
|
@ -138,7 +138,7 @@ class GraphQLTestMixin:
|
||||||
self.assertEqual(resp.status_code, 200, msg or content)
|
self.assertEqual(resp.status_code, 200, msg or content)
|
||||||
self.assertNotIn("errors", list(content.keys()), msg or content)
|
self.assertNotIn("errors", list(content.keys()), msg or content)
|
||||||
|
|
||||||
def assertResponseHasErrors(self, resp, msg=None):
|
def assert_response_has_errors(self, resp, msg=None):
|
||||||
"""
|
"""
|
||||||
Assert that the call was failing. Take care: Even with errors, GraphQL returns status 200!
|
Assert that the call was failing. Take care: Even with errors, GraphQL returns status 200!
|
||||||
:resp HttpResponse: Response
|
:resp HttpResponse: Response
|
||||||
|
|
Loading…
Reference in New Issue
Block a user