blob: 70877cb84a79c24fe8f04c6f7387f2a5aa2fd751 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'spec_helper_acceptance'
describe 'delete function' do
pp = <<-DOC
$output = delete(['a','b','c','b'], 'b')
if $output == ['a','c'] {
notify { 'output correct': }
}
DOC
describe 'success' do
it 'deletes elements of the array' do
apply_manifest(pp, :catch_failures => true) do |r|
expect(r.stdout).to match(%r{Notice: output correct})
end
end
end
end
|