mirror of
https://github.com/zebrajr/ansible.git
synced 2025-12-06 12:19:53 +01:00
8 lines
215 B
Python
8 lines
215 B
Python
from __future__ import annotations
|
|
|
|
from unittest.mock import MagicMock
|
|
from ansible.utils.path import unfrackpath
|
|
|
|
|
|
mock_unfrackpath_noop = MagicMock(spec_set=unfrackpath, side_effect=lambda x, *args, **kwargs: x)
|