Remove instance_user tests

The parameter was removed in 3b49812852
and support for it no longer exists in heat.

Change-Id: I64e52ec2fbbe1ab3196247188b21f83ff4ee5973
This commit is contained in:
Steven Hardy 2016-07-12 14:51:22 +01:00
parent 54dea6345e
commit 5b5e0b3211
1 changed files with 0 additions and 30 deletions

View File

@ -411,36 +411,6 @@ describe 'heat' do
end
end
shared_examples_for 'with instance_user set to a string' do
before do
params.merge!(
:instance_user => "fred",
)
end
it 'has instance_user set when specified' do
is_expected.to contain_heat_config('DEFAULT/instance_user').with_value('fred')
end
end
shared_examples_for 'with instance_user set to an empty string' do
before do
params.merge!(
:instance_user => "",
)
end
it 'has instance_user set to an empty string when specified' do
is_expected.to contain_heat_config('DEFAULT/instance_user').with_value('')
end
end
shared_examples_for 'without instance_user set' do
it 'doesnt have instance_user set by default' do
is_expected.to contain_heat_config('DEFAULT/instance_user').with_enure('absent')
end
end
shared_examples_for "with enable_stack_adopt and enable_stack_abandon set" do
before do
params.merge!({