Skip to content
Snippets Groups Projects
Unverified Commit c0660608 authored by Imran Iqbal's avatar Imran Iqbal
Browse files

test(magnesium): add pillar and tests for `3002`

parent 2a5b6798
Branches
No related tags found
No related merge requests found
# frozen_string_literal: true
control 'salt packages' do
title 'should be installed'
version = '3002'
%w[
salt-master
salt-minion
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should match(/^#{version}/) }
end
end
end
# 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
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
salt:
release: '3002'
py_ver: 'py3'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment