Sha256: f7570fa31af59f2b09bc8f80c88339f8f5634af5ff8a3080cbc93b5463a2e56f

Contents?: true

Size: 768 Bytes

Versions: 5

Compression:

Stored size: 768 Bytes

Contents

# @!method be_an_existing_file
#   This matchers checks if <file> exists in filesystem
#
#   @return [Boolean] The result
#
#     false:
#     * if file does not exist
#     true:
#     * if file exists
#
#   @example Use matcher
#
#     RSpec.describe do
#       it { expect(file1).to be_an_existing_file }
#     end
RSpec::Matchers.define :be_an_existing_file do |_|
  match do |actual|
    stop_all_commands

    raise "String expected" unless actual.is_a? String

    file?(actual)
  end

  failure_message do |actual|
    format('expected that file "%s" exists', actual)
  end

  failure_message_when_negated do |actual|
    format('expected that file "%s" does not exist', actual)
  end
end

RSpec::Matchers.alias_matcher :an_existing_file, :be_an_existing_file

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/aruba-2.2.0/lib/aruba/matchers/file/be_an_existing_file.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/aruba-2.2.0/lib/aruba/matchers/file/be_an_existing_file.rb
aruba-2.2.0 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-2.1.0 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-2.0.1 lib/aruba/matchers/file/be_an_existing_file.rb