Debian should fail with incorrect java_alternative

This commit is contained in:
Hunter Haugen
2014-08-22 14:42:15 -07:00
parent 67486853f2
commit e4628a345c

View File

@@ -189,7 +189,7 @@ describe 'failure cases' do
end end
# C14717 # C14717
# C14719 # C14719
it 'should work as normal when passed java_alternative and path' do it 'should fail on debian when passed fake java_alternative and path' do
pp = <<-EOS pp = <<-EOS
class { 'java': class { 'java':
java_alternative => 'whatever', java_alternative => 'whatever',
@@ -197,6 +197,10 @@ describe 'failure cases' do
} }
EOS EOS
if fact('osfamily') == 'Debian'
apply_manifest(pp, :expect_failures => true)
else
apply_manifest(pp, :catch_failures => true) apply_manifest(pp, :catch_failures => true)
end end
end end
end