浏览代码

test(sodium): add pillar and tests for `3001`

tags/v1.4.4
Imran Iqbal 4 年前
父节点
当前提交
42cacc253f
没有帐户链接到提交者的电子邮件
共有 3 个文件被更改,包括 39 次插入0 次删除
  1. +17
    -0
      test/integration/v3001-py3/controls/pkgs_spec.rb
  2. +16
    -0
      test/integration/v3001-py3/controls/service_spec.rb
  3. +6
    -0
      test/salt/pillar/v3001-py3.sls

+ 17
- 0
test/integration/v3001-py3/controls/pkgs_spec.rb 查看文件

@@ -0,0 +1,17 @@
# frozen_string_literal: true

control 'salt packages' do
title 'should be installed'

version = '3001'

%w[
salt-master
salt-minion
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should match(/^#{version}/) }
end
end
end

+ 16
- 0
test/integration/v3001-py3/controls/service_spec.rb 查看文件

@@ -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

+ 6
- 0
test/salt/pillar/v3001-py3.sls 查看文件

@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
salt:
release: '3001'
py_ver: 'py3'

正在加载...
取消
保存