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


class TestClientBackend(ModelBackend):
    pass


class BackendWithoutGetUserMethod:
    pass