12 lines
278 B
Python
12 lines
278 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from allauth.socialaccount.tests import OAuthTestsMixin
|
|
from allauth.tests import TestCase
|
|
|
|
from .provider import TrelloProvider
|
|
|
|
|
|
class TrelloTests(OAuthTestsMixin, TestCase):
|
|
provider_id = TrelloProvider.id
|