mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Add range to description and failure message
This commit is contained in:
parent
46aff9e11c
commit
4acf6aaa58
1 changed files with 4 additions and 2 deletions
|
@ -9,7 +9,8 @@ module Spectator::Matchers
|
||||||
end
|
end
|
||||||
|
|
||||||
def description : String
|
def description : String
|
||||||
"received message #{@expected.label}"
|
range = @range
|
||||||
|
"received message #{@expected.label} #{range ? "#{humanize_range(range)} time(s)" : "at least once"} with any arguments"
|
||||||
end
|
end
|
||||||
|
|
||||||
def match?(actual : TestExpression(T)) : Bool forall T
|
def match?(actual : TestExpression(T)) : Bool forall T
|
||||||
|
@ -23,7 +24,8 @@ module Spectator::Matchers
|
||||||
end
|
end
|
||||||
|
|
||||||
def failure_message(actual : TestExpression(T)) : String forall T
|
def failure_message(actual : TestExpression(T)) : String forall T
|
||||||
"#{actual.label} did not receive #{@expected.label}"
|
range = @range
|
||||||
|
"#{actual.label} did not receive #{@expected.label} #{range ? "#{humanize_range(range)} time(s)" : "at least once"}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def values(actual : TestExpression(T)) forall T
|
def values(actual : TestExpression(T)) forall T
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue