summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/patch-test-localhost/tasks/main.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/patch-test-localhost/tasks/main.yaml')
-rw-r--r--tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/patch-test-localhost/tasks/main.yaml27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/patch-test-localhost/tasks/main.yaml b/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/patch-test-localhost/tasks/main.yaml
deleted file mode 100644
index 30c4c23e6..000000000
--- a/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/patch-test-localhost/tasks/main.yaml
+++ /dev/null
@@ -1,27 +0,0 @@
-- name: Patch with basedir
- patch:
- src: patch
- basedir: "/opt/patch-dest"
- strip: 1
- register: result
- ignore_errors: true
-
-- assert:
- that:
- - "result.failed == true"
- - "'Accessing files from outside the working dir' in result.msg"
- msg: Patch must fail due to accessing files outside the working dir
-
-- name: Patch with dest
- patch:
- src: patch
- dest: "/opt/patch-dest/readme"
- strip: 1
- register: result
- ignore_errors: true
-
-- assert:
- that:
- - "result.failed == true"
- - "'Accessing files from outside the working dir' in result.msg"
- msg: Patch must fail due to accessing files outside the working dir