shard-spectator/src/spectator/pass_result.cr

17 lines
319 B
Crystal
Raw Normal View History

2020-10-17 20:56:31 +00:00
require "./result"
module Spectator
# Outcome that indicates running an example was successful.
class PassResult < Result
# Calls the `pass` method on *visitor*.
def accept(visitor)
visitor.pass
end
# One-word description of the result.
def to_s(io)
io << "pass"
end
end
end