class ArgumentSpecification::Matchers::BeEmpty
Public Instance Methods
matches?()
click to toggle source
Check if the actual object matches
Example:
>> matcher.matches? => true
# File lib/argspec/matchers/be_empty.rb, line 12 def matches? @actual.empty? end