dellemc.os9/tests/unit/mock/path.py
Ansible Core Team 5044249e1f Initial commit
2020-03-09 13:35:35 +00:00

5 lines
231 B
Python

from ansible_collections.dellemc_networking.os9.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)