Sha256: da912b4f97a8b2a85545924c78765a52e9b4f92b9db1de15324d7fa635d45a16

Contents?: true

Size: 1.25 KB

Versions: 16

Compression:

Stored size: 1.25 KB

Contents

# @!method match_path_pattern(pattern)
#   This matchers checks if <files>/directories match <pattern>
#
#   @param [String, Regexp] pattern
#     The pattern to use.
#
#   @return [TrueClass, FalseClass] The result
#
#     false:
#     * if there are no files/directories which match the pattern
#     true:
#     * if there are files/directories which match the pattern
#
#   @example Use matcher with regex
#
#     RSpec.describe do
#       it { expect(Dir.glob(**/*)).to match_file_pattern(/.txt$/) }
#     end
#
#   @example Use matcher with string
#
#     RSpec.describe do
#       it { expect(Dir.glob(**/*)).to match_file_pattern('.txt$') }
#     end
RSpec::Matchers.define :match_path_pattern do |_|
  match do |actual|
    Aruba.platform.deprecated('The use of `expect().to match_path_pattern` is deprecated. Please use `expect().to include pattern /regex/` instead.')

    next  !actual.select { |a| a == expected }.empty? if expected.is_a? String

    !actual.grep(expected).empty?
  end

  failure_message do |actual|
    format("expected that path \"%s\" matches pattern \"%s\".", actual.join(", "), expected)
  end

  failure_message_when_negated do |actual|
    format("expected that path \"%s\" does not match pattern \"%s\".", actual.join(", "), expected)
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
aruba-0.13.0 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.12.0 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.11.2 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.11.1 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.11.0.pre4 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.11.0.pre3 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.11.0.pre2 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.11.0.pre lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.10.2 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.10.1 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.10.0 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.10.0.pre2 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.10.0.pre lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.9.0 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.9.0.pre2 lib/aruba/matchers/path/match_path_pattern.rb
aruba-0.9.0.pre lib/aruba/matchers/path/match_path_pattern.rb