1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix test_postgresql dependency analysis.

This commit is contained in:
Matt Clay 2019-04-25 09:40:22 -07:00
parent b71133eeb5
commit 272bb8da7a

View file

@ -21,6 +21,12 @@ class TestPostgres(unittest.TestCase):
if mod in sys.modules:
del sys.modules[mod]
def test_import(self):
# this import makes dependency analysis work so the tests will run when the module_utils change
from ansible.module_utils.postgres import HAS_PSYCOPG2
assert HAS_PSYCOPG2 is not None
@patch.object(builtins, '__import__')
def test_postgres_pg2_missing_ensure_libs(self, mock_import):
def _mock_import(name, *args, **kwargs):