mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
mock_unfrackpath_noop: handle follow parameter (#26662)
This commit is contained in:
parent
6634f94323
commit
2d7e00c670
1 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
|||
def mock_unfrackpath_noop(path):
|
||||
''' Do not expand the path '''
|
||||
return path
|
||||
from ansible.compat.tests.mock import MagicMock
|
||||
from ansible.utils.path import unfrackpath
|
||||
|
||||
|
||||
mock_unfrackpath_noop = MagicMock(spec_set=unfrackpath, side_effect=lambda x, *args, **kwargs: x)
|
||||
|
|
Loading…
Reference in a new issue