Class: Paperclip::Shoulda::Matchers::ValidateAttachmentSizeMatcher
- Inherits:
-
Object
- Object
- Paperclip::Shoulda::Matchers::ValidateAttachmentSizeMatcher
- Defined in:
- lib/paperclip/matchers/validate_attachment_size_matcher.rb
Instance Method Summary collapse
- #description ⇒ Object
- #failure_message ⇒ Object
- #failure_message_when_negated ⇒ Object (also: #negative_failure_message)
- #greater_than(size) ⇒ Object
- #in(range) ⇒ Object
-
#initialize(attachment_name) ⇒ ValidateAttachmentSizeMatcher
constructor
A new instance of ValidateAttachmentSizeMatcher.
- #less_than(size) ⇒ Object
- #matches?(subject) ⇒ Boolean
Constructor Details
#initialize(attachment_name) ⇒ ValidateAttachmentSizeMatcher
Returns a new instance of ValidateAttachmentSizeMatcher.
19 20 21 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 19 def initialize @attachment_name = end |
Instance Method Details
#description ⇒ Object
53 54 55 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 53 def description "validate the size of attachment #{@attachment_name}" end |
#failure_message ⇒ Object
44 45 46 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 44 def "Attachment #{@attachment_name} must be between #{@low} and #{@high} bytes" end |
#failure_message_when_negated ⇒ Object Also known as: negative_failure_message
48 49 50 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 48 def "Attachment #{@attachment_name} cannot be between #{@low} and #{@high} bytes" end |
#greater_than(size) ⇒ Object
28 29 30 31 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 28 def greater_than size @low = size self end |
#in(range) ⇒ Object
33 34 35 36 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 33 def in range @low, @high = range.first, range.last self end |
#less_than(size) ⇒ Object
23 24 25 26 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 23 def less_than size @high = size self end |
#matches?(subject) ⇒ Boolean
38 39 40 41 42 |
# File 'lib/paperclip/matchers/validate_attachment_size_matcher.rb', line 38 def matches? subject @subject = subject @subject = @subject.new if @subject.class == Class lower_than_low? && higher_than_low? && lower_than_high? && higher_than_high? end |