Class: BeAnInstanceOfMatcher
- Defined in:
- lib/extensions/mspec/mspec/matchers/be_an_instance_of.rb
Instance Method Summary collapse
- #failure_message ⇒ Object
-
#initialize(expected) ⇒ BeAnInstanceOfMatcher
constructor
A new instance of BeAnInstanceOfMatcher.
- #matches?(actual) ⇒ Boolean
- #negative_failure_message ⇒ Object
Constructor Details
#initialize(expected) ⇒ BeAnInstanceOfMatcher
Returns a new instance of BeAnInstanceOfMatcher.
2 3 4 |
# File 'lib/extensions/mspec/mspec/matchers/be_an_instance_of.rb', line 2 def initialize(expected) @expected = expected end |
Instance Method Details
#failure_message ⇒ Object
11 12 13 14 |
# File 'lib/extensions/mspec/mspec/matchers/be_an_instance_of.rb', line 11 def ["Expected #{@actual.inspect} (#{@actual.class})", "to be an instance of #{@expected}"] end |
#matches?(actual) ⇒ Boolean
6 7 8 9 |
# File 'lib/extensions/mspec/mspec/matchers/be_an_instance_of.rb', line 6 def matches?(actual) @actual = actual @actual.instance_of?(@expected) end |
#negative_failure_message ⇒ Object
16 17 18 19 |
# File 'lib/extensions/mspec/mspec/matchers/be_an_instance_of.rb', line 16 def ["Expected #{@actual.inspect} (#{@actual.class})", "not to be an instance of #{@expected}"] end |