Sha256: 32a2685c10d1999f591a18a9dd6845ea6876c7caff34d675f83a71ccea4a96e3
Contents?: true
Size: 926 Bytes
Versions: 34
Compression:
Stored size: 926 Bytes
Contents
require 'rspec/expectations/version' # @!method be_an_existing_directory # This matchers checks if <directory> exists in filesystem # # @return [TrueClass, FalseClass] The result # # false: # * if directory does not exist # true: # * if directory exists # # @example Use matcher # # RSpec.describe do # it { expect(directory1).to be_an_existing_directory } # end RSpec::Matchers.define :be_an_existing_directory do |_| match do |actual| stop_all_commands next false unless actual.is_a? String directory?(actual) end failure_message do |actual| format("expected that directory \"%s\" exists", actual) end failure_message_when_negated do |actual| format("expected that directory \"%s\" does not exist", actual) end end if RSpec::Expectations::Version::STRING >= '3.0' RSpec::Matchers.alias_matcher :an_existing_directory, :be_an_existing_directory end
Version data entries
34 entries across 34 versions & 3 rubygems