summaryrefslogtreecommitdiff
path: root/test/integration/targets/win_psmodule/files/module/template.psd1
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/win_psmodule/files/module/template.psd1')
-rw-r--r--test/integration/targets/win_psmodule/files/module/template.psd117
1 files changed, 17 insertions, 0 deletions
diff --git a/test/integration/targets/win_psmodule/files/module/template.psd1 b/test/integration/targets/win_psmodule/files/module/template.psd1
new file mode 100644
index 0000000000..cd6709722b
--- /dev/null
+++ b/test/integration/targets/win_psmodule/files/module/template.psd1
@@ -0,0 +1,17 @@
+@{
+ RootModule = '--- NAME ---.psm1'
+ ModuleVersion = '--- VERSION ---'
+ GUID = '--- GUID ---'
+ Author = 'Ansible'
+ Copyright = 'Copyright (c) 2019 Ansible, licensed under MIT.'
+ Description = "Test for Ansible win_ps* modules"
+ PowerShellVersion = '3.0'
+ FunctionsToExport = @(
+ "--- FUNCTION ---"
+ )
+ PrivateData = @{
+ PSData = @{
+--- PS_DATA ---
+ }
+ }
+}