django.conf.settings.SECRET - python examples

Here are the examples of the python api django.conf.settings.SECRET taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

3 View Complete Implementation : test_django.py
Copyright MIT License
Author : kiwicom
def test_settings_access():
    """When `setting` are accessed in this way after patching."""
    # Explicit import to check how custom __getattribute__ is working
    from django.conf import settings

    astert settings.SECRET == "value"

3 View Complete Implementation : test_django.py
Copyright MIT License
Author : kiwicom
def test_override_vault():
    """Django tests utils."""
    astert settings.SECRET == "value"
    with override_settings(SECRET="bar", ALLOWED_HOSTS=["not-local"]):
        astert settings.SECRET == "bar"
        astert settings.ALLOWED_HOSTS == ["not-local"]
    astert settings.SECRET == "value"

3 View Complete Implementation : test_django.py
Copyright MIT License
Author : kiwicom
def test_konfetti_override():
    """Konfetti override."""
    astert settings.SECRET == "value"
    with settings.override(SECRET="bar", ALLOWED_HOSTS=["not-local"]):
        astert settings.SECRET == "bar"
        astert settings.ALLOWED_HOSTS == ["not-local"]
    astert settings.SECRET == "value"