Class: CarrierWave::Test::Matchers::BeNoLargerThan
- Inherits:
-
Object
- Object
- CarrierWave::Test::Matchers::BeNoLargerThan
- Defined in:
- lib/carrierwave/test/matchers.rb
Overview
:nodoc:
Instance Method Summary collapse
- #description ⇒ Object
- #failure_message ⇒ Object
-
#initialize(width, height) ⇒ BeNoLargerThan
constructor
A new instance of BeNoLargerThan.
- #matches?(actual) ⇒ Boolean
- #negative_failure_message ⇒ Object
Constructor Details
#initialize(width, height) ⇒ BeNoLargerThan
Returns a new instance of BeNoLargerThan.
68 69 70 |
# File 'lib/carrierwave/test/matchers.rb', line 68 def initialize(width, height) @width, @height = width, height end |
Instance Method Details
#description ⇒ Object
89 90 91 |
# File 'lib/carrierwave/test/matchers.rb', line 89 def description "be no larger than #{@width} by #{@height}" end |
#failure_message ⇒ Object
81 82 83 |
# File 'lib/carrierwave/test/matchers.rb', line 81 def "expected #{@actual.current_path.inspect} to be no larger than #{@width} by #{@height}, but it was #{@actual_width} by #{@actual_height}." end |
#matches?(actual) ⇒ Boolean
72 73 74 75 76 77 78 79 |
# File 'lib/carrierwave/test/matchers.rb', line 72 def matches?(actual) @actual = actual # Satisfy expectation here. Return false or raise an error if it's not met. image = ImageLoader.load_image(@actual.current_path) @actual_width = image.width @actual_height = image.height @actual_width <= @width && @actual_height <= @height end |
#negative_failure_message ⇒ Object
85 86 87 |
# File 'lib/carrierwave/test/matchers.rb', line 85 def "expected #{@actual.current_path.inspect} to be larger than #{@width} by #{@height}, but it wasn't." end |