1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# frozen_string_literal: true
module Mail
module Matchers
def any_attachment
AnyAttachmentMatcher.new
end
def an_attachment_with_filename(filename)
AttachmentFilenameMatcher.new(filename)
end
def an_attachment_with_mime_type(filename)
AttachmentMimeTypeMatcher.new(filename)
end
class AnyAttachmentMatcher
def ===(other)
other.attachment?
end
end
class AttachmentFilenameMatcher
attr_reader :filename
def initialize(filename)
@filename = filename
end
def ===(other)
other.attachment? && other.filename == filename
end
end
class AttachmentMimeTypeMatcher
attr_reader :mime_type
def initialize(mime_type)
@mime_type = mime_type
end
def ===(other)
other.attachment? && other.mime_type == mime_type
end
end
end
end
|