We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16e89f7 commit 4ab62d3Copy full SHA for 4ab62d3
2 files changed
.gitignore
@@ -1,7 +1,8 @@
1
pkg/
2
Gemfile.lock
3
vendor/
4
-spec/fixtures/
+spec/fixtures/manifests
5
+spec/fixtures/tmp
6
.vagrant/
7
.bundle/
8
coverage/
spec/fixtures/modules/create_ini_settings_test/manifests/init.pp
@@ -0,0 +1,17 @@
+# simple test class
+class create_ini_settings_test {
+ $settings = { section1 => {
+ setting1 => val1
+ },
+ section2 => {
+ setting2 => val2,
+ setting3 => {
9
+ ensure => absent
10
+ }
11
12
13
+ $defaults = {
14
+ path => '/tmp/foo.ini'
15
16
+ create_ini_settings($settings,$defaults)
17
+}
0 commit comments