
The new recipe "completions" can be executed in order to create a file with command completions for the "openstack" command in bash. We want this to be dynamic because the set of available commands depends on the set of python plugins installed on the host. Change-Id: Ib6549c00596f6560dab74491309b6b580ae7b312
13 lines
287 B
Ruby
13 lines
287 B
Ruby
# encoding: UTF-8
|
|
require_relative 'spec_helper'
|
|
|
|
describe 'openstack-common::completions' do
|
|
describe 'ubuntu' do
|
|
let(:runner) { ChefSpec::SoloRunner.new(UBUNTU_OPTS) }
|
|
let(:node) { runner.node }
|
|
let(:chef_run) do
|
|
runner.converge(described_recipe)
|
|
end
|
|
end
|
|
end
|