10b3bb6497
* geis does not work with channels2 and never will be (it has to be python now) * pytest * rewrote cache system * use username instead of pk for admin user in tests
13 lines
241 B
Python
13 lines
241 B
Python
from django.test import TestCase as _TestCase
|
|
|
|
from ..core.config import config
|
|
|
|
|
|
class TestCase(_TestCase):
|
|
"""
|
|
Resets the config object after each test.
|
|
"""
|
|
|
|
def tearDown(self) -> None:
|
|
config.save_default_values()
|