aboutsummaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-03-24 14:18:03 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-03-24 14:18:03 -0300
commit309d5859d9c801218075789fe068869ab49065f5 (patch)
treedc31d7e0e39b48f75475f374d5301bba10c7c64a /spec/spec_helper.rb
parent846ed365f19187b50f9aff0c7911b533880398a7 (diff)
parenteb97a2b642499fde7afdb64dfd3e2b7e8c14eacc (diff)
downloadpuppet-samba-309d5859d9c801218075789fe068869ab49065f5.tar.gz
puppet-samba-309d5859d9c801218075789fe068869ab49065f5.tar.bz2
Merge branch 'master' of https://github.com/ajjahn/puppet-samba
Conflicts: manifests/server/service.pp
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
new file mode 100644
index 0000000..81f98ac
--- /dev/null
+++ b/spec/spec_helper.rb
@@ -0,0 +1,8 @@
+require 'puppetlabs_spec_helper/module_spec_helper'
+
+RSpec.configure do |c|
+ c.before do
+ # avoid "Only root can execute commands as other users"
+ Puppet.features.stubs(:root? => true)
+ end
+end