Sha256: 30341f0fa1202ab09ec7895f606518e228506a154d6902088a92c39b17d19a92

Contents?: true

Size: 866 Bytes

Versions: 34

Compression:

Stored size: 866 Bytes

Contents

require 'rspec/expectations/version'

# @!method be_an_existing_file
#   This matchers checks if <file> exists in filesystem
#
#   @return [TrueClass, FalseClass] 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

    next false 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

if RSpec::Expectations::Version::STRING >= '3.0'
  RSpec::Matchers.alias_matcher :an_existing_file, :be_an_existing_file
end

Version data entries

34 entries across 34 versions & 3 rubygems

Version Path
aruba-0.14.14 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.13 lib/aruba/matchers/file/be_an_existing_file.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/aruba-0.14.12/lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.12 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.11 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.10 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.9 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.8 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.7 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.6 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.5 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.4 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.3 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-1.0.0.pre.alpha.2 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-1.0.0.pre.alpha.1 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-win-fix-0.14.2 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.2 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.1 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.14.0 lib/aruba/matchers/file/be_an_existing_file.rb
aruba-0.13.0 lib/aruba/matchers/file/be_an_existing_file.rb