Merge "Add the port check for breaker"

This commit is contained in:
Jenkins 2016-12-16 16:04:34 +00:00 committed by Gerrit Code Review
commit 1d799fcf00

View File

@ -71,6 +71,13 @@ describe 'basic octavia' do
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
if os[:family].casecmp('RedHat') == 0
describe port(9876) do
it { is_expected.to be_listening }
end
end
end
end