Class: Easytest::Matcher::InstanceOf
- Inherits:
-
Base
- Object
- Base
- Easytest::Matcher::InstanceOf
show all
- Defined in:
- lib/easytest/matcher/instance_of.rb
Instance Attribute Summary
Attributes inherited from Base
#actual, #expected, #negate
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #match!
Instance Method Details
#match? ⇒ Boolean
4
5
6
|
# File 'lib/easytest/matcher/instance_of.rb', line 4
def match?
actual.instance_of? expected
end
|
#message ⇒ Object
8
9
10
|
# File 'lib/easytest/matcher/instance_of.rb', line 8
def message
"instance of"
end
|