method
matches?
1.1.4 -
Show latest stable
- Class:
Spec::Example::ExampleMatcher
matches?(specified_examples)public
No documentation available.
# File lib/spec/example/example_matcher.rb, line 9
def matches?(specified_examples)
specified_examples.each do |specified_example|
return true if matches_literal_example?(specified_example) || matches_example_not_considering_modules?(specified_example)
end
false
end