Browse Source

test(service_spec): add `should be_installed`

tags/v1.3.3
Imran Iqbal 4 years ago
parent
commit
b5461a0eba
No account linked to committer's email address
4 changed files with 4 additions and 0 deletions
  1. +1
    -0
      test/integration/v201803-py2/controls/service_spec.rb
  2. +1
    -0
      test/integration/v201902-py2/controls/service_spec.rb
  3. +1
    -0
      test/integration/v201902-py3/controls/service_spec.rb
  4. +1
    -0
      test/integration/v3000-py3/controls/service_spec.rb

+ 1
- 0
test/integration/v201803-py2/controls/service_spec.rb View File

salt-minion salt-minion
].each do |p| ].each do |p|
describe service(p) do describe service(p) do
it { should be_installed }
it { should be_enabled } it { should be_enabled }
it { should be_running } it { should be_running }
end end

+ 1
- 0
test/integration/v201902-py2/controls/service_spec.rb View File

salt-minion salt-minion
].each do |p| ].each do |p|
describe service(p) do describe service(p) do
it { should be_installed }
it { should be_enabled } it { should be_enabled }
it { should be_running } it { should be_running }
end end

+ 1
- 0
test/integration/v201902-py3/controls/service_spec.rb View File

salt-minion salt-minion
].each do |p| ].each do |p|
describe service(p) do describe service(p) do
it { should be_installed }
it { should be_enabled } it { should be_enabled }
it { should be_running } it { should be_running }
end end

+ 1
- 0
test/integration/v3000-py3/controls/service_spec.rb View File

salt-minion salt-minion
].each do |p| ].each do |p|
describe service(p) do describe service(p) do
it { should be_installed }
it { should be_enabled } it { should be_enabled }
it { should be_running } it { should be_running }
end end

Loading…
Cancel
Save