inspec/.delivery/build-cookbook/recipes/unit.rb

15 lines
326 B
Ruby
Raw Normal View History

2015-09-23 10:21:10 +00:00
#
# Cookbook Name:: build-cookbook
# Recipe:: unit
2015-09-23 10:21:10 +00:00
#
# Copyright (c) 2015 Chef Software Inc., All Rights Reserved.
# Author:: Dominik Richter
include_recipe 'build-cookbook::prepare'
execute 'rake test' do
command 'bundle exec rake'
cwd node['delivery_builder']['repo']
user node['delivery_builder']['build_user']
end