# File lib/puppet/provider/confine/exists.rb, line 8
 8:     def pass?(value)
 9:         if for_binary?
10:             return false unless value = binary(value)
11:         end
12:         value and FileTest.exist?(value)
13:     end