Sha256: ed2309dcd4d8894102ef70ae3a284403e96cccd48f6e1a515cc1e7e6b5e0e4d1
Contents?: true
Size: 866 Bytes
Versions: 6
Compression:
Stored size: 866 Bytes
Contents
require 'rspec/expectations/version' # @!method be_an_existing_directory # This matchers checks if <directory> exists in filesystem # # @return [Boolean] 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 raise 'String expected' 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 RSpec::Matchers.alias_matcher :an_existing_directory, :be_an_existing_directory
Version data entries
6 entries across 6 versions & 1 rubygems