Class: CarrierWave::Test::Matchers::BeIdenticalTo

Inherits:
Object
  • Object
show all
Defined in:
lib/carrierwave/test/matchers.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(expected) ⇒ BeIdenticalTo

Returns a new instance of BeIdenticalTo.



13
14
15
# File 'lib/carrierwave/test/matchers.rb', line 13

def initialize(expected)
  @expected = expected
end

Instance Method Details

#failure_messageObject



20
21
22
# File 'lib/carrierwave/test/matchers.rb', line 20

def failure_message
  "expected #{@actual.inspect} to be identical to #{@expected.inspect}"
end

#matches?(actual) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
19
# File 'lib/carrierwave/test/matchers.rb', line 16

def matches?(actual)
  @actual = actual
  FileUtils.identical?(@actual, @expected)
end

#negative_failure_messageObject



23
24
25
# File 'lib/carrierwave/test/matchers.rb', line 23

def negative_failure_message
  "expected #{@actual.inspect} to not be identical to #{@expected.inspect}"
end