This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| The Django test client implements the session API but doesn't persist values in it: | |
| https://docs.djangoproject.com/en/dev/topics/testing/?from=olddocs#django.test.client.Client.session | |
| This Client subclass can be used to maintain a persistent session during test cases. | |
| """ | |
| from django.conf import settings | |
| from django.test import TestCase |