Skip to content

Commit

Permalink
Merge pull request #139 from chef/test_fixes
Browse files Browse the repository at this point in the history
update integration test dependencies
  • Loading branch information
chris-rock authored Aug 23, 2016
2 parents 07e9d3f + 87c1ae1 commit edd3e66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ group :test do
end

group :integration do
gem 'berkshelf', '~> 4.0'
gem 'test-kitchen', '~> 1.4'
gem 'berkshelf', '~> 4.3'
gem 'test-kitchen', '~> 1.11'
gem 'kitchen-vagrant'
end

Expand Down
4 changes: 1 addition & 3 deletions test/integration/cookbooks/test/recipes/prep_files.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
# Helper recipe to create create a few files in the operating
# systems, which the runner will test against.

gid = 'root'
gid = 'wheel' if node['platform_family'] == 'freebsd'
gid = 'system' if node['platform_family'] == 'aix'
gid = node['platform_family'] == 'aix' ? 'system' : node['root_group']

file '/tmp/file' do
mode '0765'
Expand Down

0 comments on commit edd3e66

Please sign in to comment.