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

23 lines
595 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'
2015-09-30 13:48:42 +00:00
home = node['delivery_builder']['repo']
{
'mock test resources' => 'rake test',
'test resources, main docker images' => 'rake test:resources config=test/test.yaml',
'test resources, extra docker images' => 'rake test:resources config=test/test-extra.yaml',
}.each do |title, test|
execute title do
command 'bundle exec '+test
cwd home
user node['delivery_builder']['build_user']
end
end