add pipe resource to test cookbook

This commit is contained in:
Dominik Richter 2015-09-15 16:17:50 +02:00
parent 9418557554
commit 29e2105c52

View file

@ -19,6 +19,11 @@ link '/tmp/symlink'do
mode '0777'
end
execute 'create pipe/fifo' do
command 'mkfifo /tmp/pipe'
not_if 'test -e /tmp/pipe'
end
# execute tests
execute 'bundle install' do
command '/opt/chef/embedded/bin/bundle install'