-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test fixes. Enable installation of mixlib-install from rubygems.
- Loading branch information
Serdar Sutay
committed
Dec 1, 2015
1 parent
a53ebb8
commit e2850d9
Showing
9 changed files
with
37 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
source 'https://api.berkshelf.com' | ||
metadata | ||
|
||
cookbook 'chef-ingredient', path: '.' | ||
cookbook 'test', path: './test/fixtures/cookbooks/test' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
require 'spec_helper' | ||
|
||
describe 'test::chefdk' do | ||
describe package('chefdk') do | ||
it { should be_installed } | ||
end | ||
|
||
it 'chefdk should be upgraded' do | ||
expect(package('chefdk').version).to eq('0.7.0-1') | ||
it 'chefdk should be version 0.7.0' do | ||
command = `/opt/chefdk/bin/chef --version` | ||
expect(command).to include('Chef Development Kit Version: 0.7.0') | ||
end | ||
end |
2 changes: 1 addition & 1 deletion
2
test/integration/local_package_install/serverspec/assert_local_package_installed_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters