Sha256: 13bc68162ffe0d6bc277b4e5634928f221ee051ec6532febcbd80894cbc654e9

Contents?: true

Size: 888 Bytes

Versions: 5

Compression:

Stored size: 888 Bytes

Contents

require "rspec/expectations/version"

# @!method be_an_absolute_path
#   This matchers checks if <path> exists in filesystem
#
#   @return [Boolean] The result
#
#     false:
#     * if path is not absolute
#     true:
#     * if path is absolute
#
#   @example Use matcher
#
#     RSpec.describe do
#       it { expect(file).to be_an_absolute_path }
#       it { expect(directory).to be_an_absolute_path }
#       it { expect(directories).to include an_absolute_path }
#     end
RSpec::Matchers.define :be_an_absolute_path do |_|
  match do |actual|
    absolute?(actual)
  end

  failure_message do |actual|
    format("expected that path \"%s\" is absolute, but it's not", actual)
  end

  failure_message_when_negated do |actual|
    format('expected that path "%s" is not absolute, but it is', actual)
  end
end

RSpec::Matchers.alias_matcher :an_absolute_path, :be_an_absolute_path

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/aruba-2.0.0/lib/aruba/matchers/path/be_an_absolute_path.rb
aruba-2.0.0 lib/aruba/matchers/path/be_an_absolute_path.rb
aruba-1.1.2 lib/aruba/matchers/path/be_an_absolute_path.rb
aruba-1.1.1 lib/aruba/matchers/path/be_an_absolute_path.rb
aruba-1.1.0 lib/aruba/matchers/path/be_an_absolute_path.rb