Class: CarrierWave::Test::Matchers::HaveDimensions
- Defined in:
- lib/carrierwave/test/matchers.rb
Overview
:nodoc:
Instance Method Summary collapse
- #failure_message ⇒ Object
-
#initialize(width, height) ⇒ HaveDimensions
constructor
A new instance of HaveDimensions.
- #matches?(actual) ⇒ Boolean
- #negative_failure_message ⇒ Object
Constructor Details
#initialize(width, height) ⇒ HaveDimensions
Returns a new instance of HaveDimensions.
85 86 87 |
# File 'lib/carrierwave/test/matchers.rb', line 85 def initialize(width, height) @width, @height = width, height end |
Instance Method Details
#failure_message ⇒ Object
98 99 100 |
# File 'lib/carrierwave/test/matchers.rb', line 98 def "expected #{@actual.current_path.inspect} to have an exact size of #{@width} by #{@height}, but it was #{@actual_width} by #{@actual_height}." end |
#matches?(actual) ⇒ Boolean
89 90 91 92 93 94 95 96 |
# File 'lib/carrierwave/test/matchers.rb', line 89 def matches?(actual) @actual = actual # Satisfy expectation here. Return false or raise an error if it's not met. img = ::Magick::Image.read(@actual.current_path).first @actual_width = img.columns @actual_height = img.rows @actual_width == @width && @actual_height == @height end |
#negative_failure_message ⇒ Object
102 103 104 |
# File 'lib/carrierwave/test/matchers.rb', line 102 def "expected #{@actual.current_path.inspect} not to have an exact size of #{@width} by #{@height}, but it did." end |