Class: Riot::RespondToMacro
- Inherits:
-
AssertionMacro
- Object
- AssertionMacro
- Riot::RespondToMacro
- Defined in:
- lib/riot/assertion_macros/respond_to.rb
Overview
Asserts that the result of the test is an object that responds to the given method
asserts("test") { "foo" }.respond_to(:to_s)
should("test") { "foo" }.respond_to(:to_s)
Instance Attribute Summary
Attributes inherited from AssertionMacro
Instance Method Summary collapse
Methods inherited from AssertionMacro
default, #error, #expected_message, expects_exception!, #expects_exception?, #fail, #new_message, #pass, register, #should_have_message
Instance Method Details
#evaluate(actual, expected) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/riot/assertion_macros/respond_to.rb', line 9 def evaluate(actual, expected) if actual.respond_to?(expected) pass(.responds_to(expected)) else fail(.method(expected).is_not_defined) end end |