Class: Paperclip::Shoulda::Matchers::HaveAttachedFileMatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/paperclip/matchers/have_attached_file_matcher.rb

Instance Method Summary collapse

Constructor Details

#initialize(attachment_name) ⇒ HaveAttachedFileMatcher

Returns a new instance of HaveAttachedFileMatcher.



16
17
18
# File 'lib/paperclip/matchers/have_attached_file_matcher.rb', line 16

def initialize attachment_name
  @attachment_name = attachment_name
end

Instance Method Details

#descriptionObject



34
35
36
# File 'lib/paperclip/matchers/have_attached_file_matcher.rb', line 34

def description
  "have an attachment named #{@attachment_name}"
end

#failure_messageObject



26
27
28
# File 'lib/paperclip/matchers/have_attached_file_matcher.rb', line 26

def failure_message
  "Should have an attachment named #{@attachment_name}"
end

#matches?(subject) ⇒ Boolean

Returns:

  • (Boolean)


20
21
22
23
24
# File 'lib/paperclip/matchers/have_attached_file_matcher.rb', line 20

def matches? subject
  @subject = subject
  @subject = @subject.class unless Class === @subject
  responds? && has_column? && included?
end

#negative_failure_messageObject



30
31
32
# File 'lib/paperclip/matchers/have_attached_file_matcher.rb', line 30

def negative_failure_message
  "Should not have an attachment named #{@attachment_name}"
end