summaryrefslogtreecommitdiff
path: root/tests/test_client/auth_backends.py
blob: 1bb1d96eeb5be53d1dd02f34991786aee9903899 (plain)
1
2
3
4
5
6
7
8
9
from django.contrib.auth.backends import ModelBackend


class TestClientBackend(ModelBackend):
    pass


class BackendWithoutGetUserMethod(object):
    pass