mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 04:07:39 +03:00
26 lines
647 B
Python
26 lines
647 B
Python
from contextlib import contextmanager
|
|
from rest_framework.compat import six
|
|
from rest_framework.settings import api_settings
|
|
|
|
|
|
@contextmanager
|
|
def temporary_setting(setting, value, module=None):
|
|
"""
|
|
Temporarily change value of setting for test.
|
|
|
|
Optionally reload given module, useful when module uses value of setting on
|
|
import.
|
|
"""
|
|
original_value = getattr(api_settings, setting)
|
|
setattr(api_settings, setting, value)
|
|
|
|
if module is not None:
|
|
six.moves.reload_module(module)
|
|
|
|
yield
|
|
|
|
setattr(api_settings, setting, original_value)
|
|
|
|
if module is not None:
|
|
six.moves.reload_module(module)
|