aboutsummaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorNan Liu <nan@puppetlabs.com>2012-05-01 16:16:10 -0700
committerNan Liu <nan@puppetlabs.com>2012-05-01 16:16:10 -0700
commitc83ffff9493443845c1545240f75d8136c0ecdff (patch)
tree2a4f1450709f3559bf2b6cad95c7efe04011161b /spec/spec_helper.rb
parentdf6c470fd39e6e4e92968d414ae9021b4ec67205 (diff)
downloadpuppet-tftp-c83ffff9493443845c1545240f75d8136c0ecdff.tar.gz
puppet-tftp-c83ffff9493443845c1545240f75d8136c0ecdff.tar.bz2
Add support files for initial release.
* Update documentation. * Fix puppet-lint 80 char issues. * Add spec tests. * Add modulefile, changelog, rakefile, and license.
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
new file mode 100644
index 0000000..b47eaea
--- /dev/null
+++ b/spec/spec_helper.rb
@@ -0,0 +1,20 @@
+require 'puppet'
+require 'mocha'
+require 'rspec'
+require 'rspec-puppet'
+require 'rspec/expectations'
+require 'puppetlabs_spec_helper'
+
+def param_value(subject, type, title, param)
+ subject.resource(type, title).send(:parameters)[param.to_sym]
+end
+
+RSpec.configure do |c|
+ c.module_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/modules'))
+ # Using an empty site.pp file to avoid: https://github.com/rodjek/rspec-puppet/issues/15
+ c.manifest_dir = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/manifests'))
+ # Use fixtures for config file mainly to support using our own hiera.yaml settings.
+ # Pending: https://github.com/rodjek/rspec-puppet/pull/21
+ # c.config = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/puppet.conf'))
+ c.mock_with :mocha
+end