forked from theforeman/puppet-foreman_scap_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic_spec.rb
38 lines (34 loc) · 1.01 KB
/
basic_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'spec_helper_acceptance'
describe 'foreman_scap_client' do
it_behaves_like 'an idempotent resource' do
let(:manifest) do
<<~PUPPET
class { 'foreman_scap_client':
foreman_repo_rel => 'nightly',
server => 'foreman.example.com',
port => 8443,
policies => [],
}
PUPPET
end
end
describe package('rubygem-foreman_scap_client') do
it { is_expected.to be_installed }
end
it_behaves_like 'an idempotent resource' do
let(:manifest) do
<<~PUPPET
class { 'foreman_scap_client':
foreman_repo_rel => 'nightly',
server => 'foreman.example.com',
port => 8443,
policies => [ { id: 1, profile_id: 'default', content_path: '/usr/share/xml/scap/ssg/content/ssg-rhel7-ds.xml' } ],
obsolete => false,
}
PUPPET
end
end
describe package('rubygem-foreman_scap_client_bash') do
it { is_expected.to be_installed }
end
end