Fix test_postgresql dependency analysis.

pull/55784/head
Matt Clay 5 years ago
parent b71133eeb5
commit 272bb8da7a

@ -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):

Loading…
Cancel
Save