# File lib/puppet/property/list.rb, line 24
24:             def add_should_with_current(should, current)
25:                 if current.is_a?(Array)
26:                     should += current
27:                 end
28:                 should.uniq
29:             end