Sha256: b2308bdcf8b19dd5a925c244ae1d674d81b5551f649a0d0a44bbdf8f72d9c212
Contents?: true
Size: 751 Bytes
Versions: 6
Compression:
Stored size: 751 Bytes
Contents
#! /usr/bin/env ruby -S rspec require 'spec_helper_acceptance' describe 'validate_absolute_path function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do describe 'success' do %w{ C:/ C:\\\\ C:\\\\WINDOWS\\\\System32 C:/windows/system32 X:/foo/bar X:\\\\foo\\\\bar /var/tmp /var/lib/puppet /var/opt/../lib/puppet }.each do |path| it "validates a single argument #{path}" do pp = <<-EOS $one = '#{path}' validate_absolute_path($one) EOS apply_manifest(pp, :catch_failures => true) end end end describe 'failure' do it 'handles improper number of arguments' it 'handles relative paths' end end
Version data entries
6 entries across 6 versions & 1 rubygems