This repository has been archived on 2023-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
django-pyvows/django_pyvows/settings_helpers.py
2015-07-19 11:17:55 +02:00

10 lines
231 B
Python

class SettingsOverrideSupport(object):
def __init__(self):
self.ignore('settings')
def settings(self, **kwargs):
from django.test.utils import override_settings
return override_settings(**kwargs)