Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / delete_values_spec.rb
1 require 'spec_helper_acceptance'
2
3 describe 'delete_values function' do
4   describe 'success' do
5     pp = <<-DOC
6       $a = { 'a' => 'A', 'b' => 'B', 'B' => 'C', 'd' => 'B' }
7       $b = { 'a' => 'A', 'B' => 'C' }
8       $o = delete_values($a, 'B')
9       if $o == $b {
10         notify { 'output correct': }
11       }
12     DOC
13     it 'deletes elements of the hash' do
14       apply_manifest(pp, :catch_failures => true) do |r|
15         expect(r.stdout).to match(%r{Notice: output correct})
16       end
17     end
18   end
19   describe 'failure' do
20     it 'handles non-hash arguments'
21     it 'handles improper argument counts'
22   end
23 end