mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-28 19:53:35 -05:00
10 lines
319 B
Python
10 lines
319 B
Python
from split_settings.tools import include
|
|
|
|
|
|
def test_postprocess_auth_basic_enabled():
|
|
locals().update({'__file__': __file__})
|
|
|
|
include('../../../settings/defaults.py', scope=locals())
|
|
assert 'awx.api.authentication.LoggedBasicAuthentication' in locals()['REST_FRAMEWORK']['DEFAULT_AUTHENTICATION_CLASSES']
|
|
|