blob: 81f98acd8602b7b233d687b74cef12fa28b22ad6 (
plain)
1
2
3
4
5
6
7
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
|