summaryrefslogtreecommitdiff
path: root/test/integration/targets/win_data_deduplication/tasks/tests.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/win_data_deduplication/tasks/tests.yml')
-rw-r--r--test/integration/targets/win_data_deduplication/tasks/tests.yml47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/integration/targets/win_data_deduplication/tasks/tests.yml b/test/integration/targets/win_data_deduplication/tasks/tests.yml
deleted file mode 100644
index 64a4292713..0000000000
--- a/test/integration/targets/win_data_deduplication/tasks/tests.yml
+++ /dev/null
@@ -1,47 +0,0 @@
----
-
-- name: Enable Data Deduplication on the T drive - check mode
- win_data_deduplication:
- drive_letter: "T"
- state: present
- settings:
- no_compress: true
- minimum_file_age_days: 2
- minimum_file_size: 0
- check_mode: yes
- register: win_data_deduplication_enable_check_mode
-
-- name: Check that it was successful with a change - check mode
- assert:
- that:
- - win_data_deduplication_enable_check_mode is changed
-
-- name: Enable Data Deduplication on the T drive
- win_data_deduplication:
- drive_letter: "T"
- state: present
- settings:
- no_compress: true
- minimum_file_age_days: 2
- minimum_file_size: 0
- register: win_data_deduplication_enable
-
-- name: Check that it was successful with a change
- assert:
- that:
- - win_data_deduplication_enable is changed
-
-- name: Enable Data Deduplication on the T drive
- win_data_deduplication:
- drive_letter: "T"
- state: present
- settings:
- no_compress: true
- minimum_file_age_days: 2
- minimum_file_size: 0
- register: win_data_deduplication_enable_again
-
-- name: Check that it was successful without a change
- assert:
- that:
- - win_data_deduplication_enable_again is not changed