mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add contain
matcher
This commit is contained in:
parent
5f9c0385ad
commit
f4ac7a3405
2 changed files with 42 additions and 0 deletions
|
@ -327,5 +327,22 @@ module Spectator::DSL
|
||||||
macro end_with(expected)
|
macro end_with(expected)
|
||||||
::Spectator::Matchers::EndWithMatcher.new({{expected.stringify}}, {{expected}})
|
::Spectator::Matchers::EndWithMatcher.new({{expected.stringify}}, {{expected}})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Indicates that some value or set should contain another value.
|
||||||
|
# This is typically used on a `String` or `Array` (any `Enumerable` works).
|
||||||
|
# The `expected` argument can be a `String` or `Char`
|
||||||
|
# when the actual type (being comapred against) is a `String`.
|
||||||
|
# For `Enumerable` types, each item is inspected until one matches.
|
||||||
|
# In both cases, the `includes?` method is used.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# ```
|
||||||
|
# expect("foobar").to contain("foo")
|
||||||
|
# expect("foobar").to contain('o')
|
||||||
|
# expect(%i[a b c]).to contain(:b)
|
||||||
|
# ```
|
||||||
|
macro contain(expected)
|
||||||
|
::Spectator::Matchers::ContainMatcher.new({{expected.stringify}}, {{expected}})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
25
src/spectator/matchers/contain_matcher.cr
Normal file
25
src/spectator/matchers/contain_matcher.cr
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
require "./value_matcher"
|
||||||
|
|
||||||
|
module Spectator::Matchers
|
||||||
|
# Matcher that tests whether a value, such as a `String` or `Array`, contains a value.
|
||||||
|
# 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.
|
||||||
|
# True is returned if the match was successful, false otherwise.
|
||||||
|
def match?(partial)
|
||||||
|
partial.actual.includes?(expected)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Describes the condition that satisfies the matcher.
|
||||||
|
# This is informational and displayed to the end-user.
|
||||||
|
def message(partial)
|
||||||
|
"Expected #{partial.label} to contain #{label}"
|
||||||
|
end
|
||||||
|
|
||||||
|
# Describes the condition that won't satsify the matcher.
|
||||||
|
# This is informational and displayed to the end-user.
|
||||||
|
def negated_message(partial)
|
||||||
|
"Expected #{partial.label} to not contain #{label}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue