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.



11
12
13
# File 'lib/carrierwave/test/matchers.rb', line 11

def initialize(expected)
  @expected = expected
end

Instance Method Details

#descriptionObject



28
29
30
# File 'lib/carrierwave/test/matchers.rb', line 28

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

#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

#failure_message_when_negatedObject Also known as: negative_failure_message



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

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

#matches?(actual) ⇒ Boolean

Returns:

  • (Boolean)


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

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