diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-07-27 11:48:56 -0400 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-07-27 11:48:56 -0400 |
commit | b779d0d0e2d11471241f647c96e6f91683d3c5a0 (patch) | |
tree | 628a42d51c3f2a79ae8aaae7e218078392faef27 /spec_helper.rb | |
parent | f9a04de1d66be8a05c479d18796b8272b3313653 (diff) | |
parent | 62be88b026e19e1750deaf5cf81b3f9519ff651a (diff) |
Merge pull request #99 from daniellawrence/rspec
Getting started with basic rspec
Diffstat (limited to 'spec_helper.rb')
-rw-r--r-- | spec_helper.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/spec_helper.rb b/spec_helper.rb new file mode 100644 index 0000000..65379ee --- /dev/null +++ b/spec_helper.rb @@ -0,0 +1,25 @@ +require 'puppetlabs_spec_helper/module_spec_helper' + +RSpec.configure do |c| + c.treat_symbols_as_metadata_keys_with_true_values = true + + c.before :each do + # Ensure that we don't accidentally cache facts and environment + # between test cases. + Facter::Util::Loader.any_instance.stubs(:load_all) + Facter.clear + Facter.clear_messages + + # Store any environment variables away to be restored later + @old_env = {} + ENV.each_key {|k| @old_env[k] = ENV[k]} + + if ENV['STRICT_VARIABLES'] == 'yes' + Puppet.settings[:strict_variables]=true + end + end +end + +shared_examples :compile, :compile => true do + it { should compile.with_all_deps } +end |