Class: Pathname

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec-puppet/monkey_patches.rb

Instance Method Summary collapse

Instance Method Details

#rspec_puppet_basename(path) ⇒ Object

Raises:

  • (ArgumentError)


308
309
310
311
312
313
314
315
# 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