blob: 8e01d55ef213561ed9fd3524a55efeb0813744a3 (
plain)
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
|
require 'spec_helper'
if Puppet.version.to_f >= 4.0
describe 'test::string', type: :class do
describe 'accepts strings' do
[
'',
'one',
].each do |value|
describe value.inspect do
let(:params) {{ value: value }}
it { is_expected.to compile }
end
end
end
describe 'rejects other values' do
[
[],
{},
1,
true,
].each do |value|
describe value.inspect do
let(:params) {{ value: value }}
it { is_expected.to compile.and_raise_error(/parameter 'value' expects a Stdlib::Compat::String = String/) }
end
end
end
end
end
|