2
0

test: add tests for v3000-py2

This commit is contained in:
Imran Iqbal 2020-05-01 08:32:39 +01:00
parent 965588b108
commit c228029879
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
3 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# frozen_string_literal: true
version =
case platform[:family]
when 'debian'
'3000.2+ds-1'
end
control 'salt packages' do
title 'should be installed'
%w[
salt-master
salt-minion
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should eq version }
end
end
end

View File

@ -0,0 +1,16 @@
# frozen_string_literal: true
control 'salt services' do
title 'should be running'
%w[
salt-master
salt-minion
].each do |p|
describe service(p) do
it { should be_installed }
it { should be_enabled }
it { should be_running }
end
end
end

View File

@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
salt:
release: '3000'