summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/aws/tests/unit/mock/path.py
blob: 8057e5a5849971f9443a3e9edc41fcbcfd8cfed2 (plain)
1
2
3
4
5
6
7
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

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)