django-rest-framework/tests/importable/test_installed.py

14 lines
326 B
Python
Raw Normal View History

2017-11-06 17:56:57 +03:00
from django.conf import settings
2017-11-26 05:10:30 +03:00
2017-11-06 17:56:57 +03:00
from tests import importable
def test_installed():
# ensure that apps can freely import rest_framework.compat
assert 'tests.importable' in settings.INSTALLED_APPS
def test_imported():
# ensure that the __init__ hasn't been mucked with
assert hasattr(importable, 'compat')