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)


264
265
266
267
268
269
270
271
# File 'lib/rspec-puppet/monkey_patches.rb', line 264

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