mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 09:48:51 -03:30
16 lines
365 B
Python
16 lines
365 B
Python
# Copyright (c) 2016 Ansible, Inc.
|
|
|
|
# Python
|
|
import mock
|
|
|
|
# AWX
|
|
from awx.main.ha import is_ha_environment
|
|
|
|
@mock.patch('awx.main.models.Instance.objects.count', lambda: 2)
|
|
def test_multiple_instances():
|
|
assert is_ha_environment()
|
|
|
|
@mock.patch('awx.main.models.Instance.objects.count', lambda: 1)
|
|
def test_db_localhost():
|
|
assert is_ha_environment() is False
|