blob: aea8ba1e6a27d8d4f943c31ebf8544fcfd4f9900 (
plain)
1
2
3
4
5
6
7
|
from ansible_collections.vyos.vyos.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
)
|