mock_unfrackpath_noop: handle follow parameter (#26662)

pull/26738/head
Pilou 7 years ago committed by James Cammarata
parent 6634f94323
commit 2d7e00c670

@ -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…
Cancel
Save