- deprecated Gemfile - updated Rakefile to use 'chef exec' instead of 'bundle exec' - updated TESTING.md - replaced Runner in specs with SoloRunner for new chefspec version - initialized file_cache_path to make git_sync spec for docker work Change-Id: I845c712f2d0d216d9d4a9d32c28ac4b03e96109a
16 lines
385 B
Ruby
16 lines
385 B
Ruby
# encoding: UTF-8
|
|
|
|
require_relative 'spec_helper'
|
|
|
|
describe 'openstack-compute::docker-setup' do
|
|
describe 'redhat' do
|
|
let(:runner) { ChefSpec::SoloRunner.new(REDHAT_OPTS) }
|
|
let(:node) { runner.node }
|
|
let(:chef_run) { runner.converge(described_recipe) }
|
|
|
|
it 'upgrades python-devel package' do
|
|
expect(chef_run).to upgrade_package 'python-devel'
|
|
end
|
|
end
|
|
end
|