class Pathname

Public Instance Methods

rspec_puppet_basename(path) click to toggle source
# File lib/rspec-puppet/monkey_patches.rb, line 308
def rspec_puppet_basename(path)
  raise ArgumentError, 'pathname stubbing not enabled' unless RSpec.configuration.enable_pathname_stubbing

  if path =~ /\A[a-zA-Z]:(#{SEPARATOR_PAT}.*)\z/
    path = path[2..-1]
  end
  path.split(SEPARATOR_PAT).last || path[/(#{SEPARATOR_PAT})/, 1] || path
end