
Python < 3.4.4 has already reached its EOL. Change-Id: Ieb7cfd796991645db44dafc0e5ba82855c08853a
7 lines
180 B
Python
7 lines
180 B
Python
from unittest.mock import MagicMock
|
|
|
|
from ansible.utils.path import unfrackpath
|
|
|
|
|
|
mock_unfrackpath_noop = MagicMock(spec_set=unfrackpath, side_effect=lambda x, *args, **kwargs: x)
|