community.general/tests/unit/mock/path.py

6 lines
226 B
Python
Raw Normal View History

2020-03-09 09:11:07 +00:00
from ansible_collections.community.general.tests.unit.compat.mock import MagicMock
from ansible.utils.path import unfrackpath
mock_unfrackpath_noop = MagicMock(spec_set=unfrackpath, side_effect=lambda x, *args, **kwargs: x)