Class: BeAnInstanceOfMatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/mspec/matchers/be_an_instance_of.rb

Instance Method Summary collapse

Constructor Details

#initialize(expected) ⇒ BeAnInstanceOfMatcher

Returns a new instance of BeAnInstanceOfMatcher.



2
3
4
# File 'lib/mspec/matchers/be_an_instance_of.rb', line 2

def initialize(expected)
  @expected = expected
end

Instance Method Details

#failure_messageObject



11
12
13
14
# File 'lib/mspec/matchers/be_an_instance_of.rb', line 11

def failure_message
  ["Expected #{@actual.inspect} (#{@actual.class})",
   "to be an instance of #{@expected}"]
end

#matches?(actual) ⇒ Boolean

Returns:

  • (Boolean)


6
7
8
9
# File 'lib/mspec/matchers/be_an_instance_of.rb', line 6

def matches?(actual)
  @actual = actual
  @actual.instance_of?(@expected)
end

#negative_failure_messageObject



16
17
18
19
# File 'lib/mspec/matchers/be_an_instance_of.rb', line 16

def negative_failure_message
  ["Expected #{@actual.inspect} (#{@actual.class})",
   "not to be an instance of #{@expected}"]
end