20 lines
422 B
Python
20 lines
422 B
Python
from allauth.socialaccount.tests import OAuth2TestsMixin
|
|
from allauth.tests import MockedResponse, TestCase
|
|
|
|
from .provider import RobinhoodProvider
|
|
|
|
|
|
class RobinhoodTests(OAuth2TestsMixin, TestCase):
|
|
provider_id = RobinhoodProvider.id
|
|
|
|
def get_mocked_response(self):
|
|
return MockedResponse(
|
|
200,
|
|
"""
|
|
{
|
|
"username": "test_username",
|
|
"id": "1234-5678-910"
|
|
}
|
|
""",
|
|
)
|