aboutsummaryrefslogtreecommitdiff
path: root/spec/puppetlabs_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/puppetlabs_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/puppetlabs_spec_helper.rb')
-rw-r--r--spec/puppetlabs_spec_helper.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/spec/puppetlabs_spec_helper.rb b/spec/puppetlabs_spec_helper.rb
new file mode 100644
index 0000000..ba2ae7a
--- /dev/null
+++ b/spec/puppetlabs_spec_helper.rb
@@ -0,0 +1,25 @@
+# Define the main module namespace for use by the helper modules
+module PuppetlabsSpec
+ # FIXTURE_DIR represents the standard locations of all fixture data. Normally
+ # this represents <project>/spec/fixtures. This will be used by the fixtures
+ # library to find relative fixture data.
+ FIXTURE_DIR = File.join(dir = File.expand_path(File.dirname(__FILE__)), \
+ "fixtures") unless defined?(FIXTURE_DIR)
+end
+
+# Require all necessary helper libraries so they can be used later
+require 'puppetlabs_spec/files'
+require 'puppetlabs_spec/fixtures'
+require 'puppetlabs_spec/matchers'
+
+RSpec.configure do |config|
+ # Include PuppetlabsSpec helpers so they can be called at convenience
+ config.extend PuppetlabsSpec::Files
+ config.extend PuppetlabsSpec::Fixtures
+ config.include PuppetlabsSpec::Fixtures
+
+ # This will cleanup any files that were created with tmpdir or tmpfile
+ config.after :each do
+ PuppetlabsSpec::Files.cleanup
+ end
+end