X-Git-Url: https://git.arvados.org/arvados-formula.git/blobdiff_plain/cbd02897a8c752346b55e3899ae886651beeca2d..40e86c713b6ff239240f14fb4695185b58e5382a:/test/integration/keepbalance/controls/services_spec.rb diff --git a/test/integration/keepbalance/controls/services_spec.rb b/test/integration/keepbalance/controls/services_spec.rb new file mode 100644 index 0000000..fe157e2 --- /dev/null +++ b/test/integration/keepbalance/controls/services_spec.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +control 'arvados keepbalance service' do + impact 0.5 + title 'should be running and enabled' + + describe service('keep-balance') do + it { should be_enabled } + it { should be_running } + end + describe port(9_005) do + it { should be_listening } + its('processes') { should cmp 'keep-balance' } + end +end