-
Notifications
You must be signed in to change notification settings - Fork 766
Use the Django TestCase's Client #886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use the Django TestCase's Client #886
Conversation
… its TestCase class. This allows GraphQL tests to make use of the stateful client methods like login()
ping @jkimbo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like a good change @tnightingale but the automated tests are failing. Can you fix them?
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward? This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
@tnightingale @zbyte64 Any change we rebase & merge this? |
Looks like Not sure how master is passing but this does not... |
This PR can be closed, thanks to #1084 |
Use the
django.test.Client
instance that Django provides with itsTestCase
class.This allows GraphQL tests to make use of the stateful client methods like
client.login()
.