mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Remove BlockExpectation
This commit is contained in:
parent
ff4e148509
commit
3731b6d785
3 changed files with 1 additions and 191 deletions
|
@ -1,31 +0,0 @@
|
|||
require "./expectation"
|
||||
|
||||
module Spectator::Expectations
|
||||
# Expectation that operates on a block.
|
||||
# A block produces some value one or more times.
|
||||
# A matcher checks whether the values produced by the block satisfy some conditions.
|
||||
# The behavior of the block can be tested by verifying the values produced by it.
|
||||
class BlockExpectation(ReturnType) < Expectation
|
||||
# Creates the expectation.
|
||||
# The `matched` flag should be true if the matcher is satisfied with the partial.
|
||||
# The `negated` flag should be true if the expectation is inverted.
|
||||
# See `Expectation#initialize` for details on these two arguments.
|
||||
# The `partial` and the `matcher` arguments should reference
|
||||
# the actual and expected value with matcher respectively.
|
||||
def initialize(matched, negated,
|
||||
@partial : BlockExpectationPartial(ReturnType),
|
||||
@matcher : Matchers::Matcher)
|
||||
super(matched, negated)
|
||||
end
|
||||
|
||||
# Describes the condition that must be met for the expectation to be satisifed.
|
||||
private def message : String
|
||||
@matcher.message(@partial)
|
||||
end
|
||||
|
||||
# Describes the condition under which the expectation won't be satisifed.
|
||||
private def negated_message : String
|
||||
@matcher.negated_message(@partial)
|
||||
end
|
||||
end
|
||||
end
|
|
@ -25,7 +25,7 @@ module Spectator::Expectations
|
|||
# Evaluates the expectation and returns it.
|
||||
private def eval(matcher, negated = false) : Expectation
|
||||
matched = matcher.match?(self)
|
||||
BlockExpectation.new(matched, negated, self, matcher)
|
||||
Expectation.new(matched, negated, self, matcher)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue