mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 11:48:17 +00:00
35 lines
761 B
Ruby
35 lines
761 B
Ruby
require 'spec_helper'
|
|
|
|
if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0
|
|
describe 'test::array', type: :class do
|
|
describe 'accepts arrays' do
|
|
[
|
|
[],
|
|
['one'],
|
|
[1],
|
|
[{}],
|
|
[[]],
|
|
].each do |value|
|
|
describe value.inspect do
|
|
let(:params) {{ value: value }}
|
|
it { is_expected.to compile }
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'rejects other values' do
|
|
[
|
|
'',
|
|
'one',
|
|
'1',
|
|
{},
|
|
].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::Array/) }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|