Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

15 lines
382 B
Python

from allauth.socialaccount.tests import OAuth2TestsMixin
from allauth.tests import MockedResponse, TestCase
from .provider import QuestradeProvider
class QuestradeTests(OAuth2TestsMixin, TestCase):
provider_id = QuestradeProvider.id
def get_mocked_response(self):
return MockedResponse(
200,
"""{"userId":400,"accounts":[]}""",
)