X-Git-Url: https://git.arvados.org/arvados-formula.git/blobdiff_plain/44506de8d5acbdd35b4d1f56c7a1a46085c7c7cf..27a9e7c6ce339516760508d8341d5515f3cc070a:/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