Class: CarrierWave::Test::Matchers::HaveWidth
- Inherits:
-
Object
- Object
- CarrierWave::Test::Matchers::HaveWidth
- Defined in:
- lib/carrierwave/test/matchers.rb
Overview
:nodoc:
Instance Method Summary collapse
- #description ⇒ Object
- #failure_message ⇒ Object
-
#initialize(width) ⇒ HaveWidth
constructor
A new instance of HaveWidth.
- #matches?(actual) ⇒ Boolean
- #negative_failure_message ⇒ Object
Constructor Details
#initialize(width) ⇒ HaveWidth
Returns a new instance of HaveWidth.
188 189 190 |
# File 'lib/carrierwave/test/matchers.rb', line 188 def initialize(width) @width = width end |
Instance Method Details
#description ⇒ Object
208 209 210 |
# File 'lib/carrierwave/test/matchers.rb', line 208 def description "have an exact width of #{@width}" end |
#failure_message ⇒ Object
200 201 202 |
# File 'lib/carrierwave/test/matchers.rb', line 200 def "expected #{@actual.current_path.inspect} to have an exact size of #{@width}, but it was #{@actual_width}." end |
#matches?(actual) ⇒ Boolean
192 193 194 195 196 197 198 |
# File 'lib/carrierwave/test/matchers.rb', line 192 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_width == @width end |
#negative_failure_message ⇒ Object
204 205 206 |
# File 'lib/carrierwave/test/matchers.rb', line 204 def "expected #{@actual.current_path.inspect} not to have an exact size of #{@width}, but it did." end |