mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add less-than-equal-to matcher
This commit is contained in:
parent
4ccc27321e
commit
52d0e6d55e
2 changed files with 27 additions and 2 deletions
|
@ -19,8 +19,8 @@ module Spectator::Matchers
|
||||||
# ```
|
# ```
|
||||||
# expect(0).to be <= 1
|
# expect(0).to be <= 1
|
||||||
# ```
|
# ```
|
||||||
def <=(other : ExpectedType) forall ExpectedType
|
def <=(expected : ExpectedType) forall ExpectedType
|
||||||
raise NotImplementedError.new("be <=")
|
LessThanEqualMatcher.new(expected)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Creates a matcher that checks if a value is greater than an expected value.
|
# Creates a matcher that checks if a value is greater than an expected value.
|
||||||
|
|
25
src/spectator/matchers/less_than_equal_matcher.cr
Normal file
25
src/spectator/matchers/less_than_equal_matcher.cr
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
require "./value_matcher"
|
||||||
|
|
||||||
|
module Spectator::Matchers
|
||||||
|
# Matcher that tests whether one value is less than or equal to another.
|
||||||
|
# The values are compared with the `<=` operator.
|
||||||
|
struct LessThanEqualMatcher(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 : Expectations::ValueExpectationPartial(ActualType)) : Bool forall ActualType
|
||||||
|
partial.actual <= expected
|
||||||
|
end
|
||||||
|
|
||||||
|
# Describes the condition that satisfies the matcher.
|
||||||
|
# This is informational and displayed to the end-user.
|
||||||
|
def message(partial : Expectations::ValueExpectationPartial(ActualType)) : String forall ActualType
|
||||||
|
"Expected #{partial.label} to be less than or equal to #{label} (using <=)"
|
||||||
|
end
|
||||||
|
|
||||||
|
# Describes the condition that won't satsify the matcher.
|
||||||
|
# This is informational and displayed to the end-user.
|
||||||
|
def negated_message(partial : Expectations::ValueExpectationPartial(ActualType)) : String forall ActualType
|
||||||
|
"Expected #{partial.label} to not be less than or equal to #{label} (using <=)"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Add table
Add a link
Reference in a new issue