Update doc

This commit is contained in:
Michael Miller 2019-02-01 20:17:46 -07:00
parent 4043a76a07
commit 6d90966f93

View file

@ -1,7 +1,7 @@
require "./value_matcher"
module Spectator::Matchers
# Matcher that tests whether a value, such as a `String` or `Array`, contains a value.
# Matcher that tests whether a value, such as a `String` or `Array`, contains one or more values.
# The values are checked with the `includes?` operator.
struct ContainMatcher(ExpectedType) < ValueMatcher(ExpectedType)
# Determines whether the matcher is satisfied with the value given to it.