# File lib/puppet/file_system/path_pattern.rb, line 70 def absolute? false end
# File lib/puppet/file_system/path_pattern.rb, line 74 def validate super case @pathname.to_s when ABSOLUTE_WINDOWS raise(InvalidPattern, "A relative PathPattern cannot be prefixed with a drive.") when ABSOLUTE_UNIX raise(InvalidPattern, "A relative PathPattern cannot be an absolute path.") end end