summaryrefslogtreecommitdiff
path: root/spec/lib/puppet_spec/modules.rb
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppetlabs.com>2014-03-18 16:16:00 -0700
committerHunter Haugen <hunter@puppetlabs.com>2014-03-18 16:16:00 -0700
commit904f1a003e790ba2afaf3452ecda9805e87d80d0 (patch)
tree93407d68868c37af5d597d33134ba5a16e919a21 /spec/lib/puppet_spec/modules.rb
parentdb00ce660520abfdc110d1ed0dd10bfbc708e256 (diff)
parentfec943f441f0c6ab8d6b685091d3418ec0e265b4 (diff)
Merge branch '3.2.x' into 3.x
Diffstat (limited to 'spec/lib/puppet_spec/modules.rb')
-rw-r--r--spec/lib/puppet_spec/modules.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/lib/puppet_spec/modules.rb b/spec/lib/puppet_spec/modules.rb
new file mode 100644
index 0000000..6835e44
--- /dev/null
+++ b/spec/lib/puppet_spec/modules.rb
@@ -0,0 +1,26 @@
+module PuppetSpec::Modules
+ class << self
+ def create(name, dir, options = {})
+ module_dir = File.join(dir, name)
+ FileUtils.mkdir_p(module_dir)
+
+ environment = options[:environment]
+
+ if metadata = options[:metadata]
+ metadata[:source] ||= 'github'
+ metadata[:author] ||= 'puppetlabs'
+ metadata[:version] ||= '9.9.9'
+ metadata[:license] ||= 'to kill'
+ metadata[:dependencies] ||= []
+
+ metadata[:name] = "#{metadata[:author]}/#{name}"
+
+ File.open(File.join(module_dir, 'metadata.json'), 'w') do |f|
+ f.write(metadata.to_pson)
+ end
+ end
+
+ Puppet::Module.new(name, module_dir, environment)
+ end
+ end
+end