Skip to content

Instantly share code, notes, and snippets.

@swade1987
Created March 1, 2016 13:38
Show Gist options
  • Save swade1987/34b6868ccff05ca91658 to your computer and use it in GitHub Desktop.
Save swade1987/34b6868ccff05ca91658 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe 'bamboo-agent::install' do
let(:chef_run) { ChefSpec::SoloRunner.new(platform: 'windows', version: '2012').converge(described_recipe) }
it 'includes the `chocolatey` recipe' do
expect(chef_run).to include_recipe('chocolatey::default')
end
it 'installs chefdk' do
expect(chef_run).to install_chocolatey_package('chefdk')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment