Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / getvar_spec.rb
1 require 'spec_helper_acceptance'
2
3 describe 'getvar function' do
4   describe 'success' do
5     pp = <<-DOC
6       class a::data { $foo = 'aoeu' }
7       include a::data
8       $b = 'aoeu'
9       $o = getvar("a::data::foo")
10       if $o == $b {
11         notify { 'output correct': }
12       }
13     DOC
14     it 'getvars from classes' do
15       apply_manifest(pp, :catch_failures => true) do |r|
16         expect(r.stdout).to match(%r{Notice: output correct})
17       end
18     end
19   end
20   describe 'failure' do
21     it 'handles improper argument counts'
22     it 'handles non-numbers'
23   end
24 end