mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix test_postgresql dependency analysis.
This commit is contained in:
@@ -21,6 +21,12 @@ class TestPostgres(unittest.TestCase):
|
|||||||
if mod in sys.modules:
|
if mod in sys.modules:
|
||||||
del sys.modules[mod]
|
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__')
|
@patch.object(builtins, '__import__')
|
||||||
def test_postgres_pg2_missing_ensure_libs(self, mock_import):
|
def test_postgres_pg2_missing_ensure_libs(self, mock_import):
|
||||||
def _mock_import(name, *args, **kwargs):
|
def _mock_import(name, *args, **kwargs):
|
||||||
|
|||||||
Reference in New Issue
Block a user