#!/bin/sh # Run the Puppet RSpecs.
if [ ā$1ā == ā-vā ]; then
err_out=/dev/stderr
else
err_out=/dev/null
fi
find spec -name '*_spec.rb' -not -path 'spec/fixtures/*' -print0 |
xargs -0 bundle exec rspec 2>$err_out
#!/bin/sh # Run the Puppet RSpecs.
if [ ā$1ā == ā-vā ]; then
err_out=/dev/stderr
else
err_out=/dev/null
fi
find spec -name '*_spec.rb' -not -path 'spec/fixtures/*' -print0 |
xargs -0 bundle exec rspec 2>$err_out