mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
10 lines
334 B
Crystal
10 lines
334 B
Crystal
require "./context"
|
|
|
|
module Spectator
|
|
# Encapsulates a method in a test context.
|
|
# This could be used to invoke a test case or hook method.
|
|
# The context is passed as an argument.
|
|
# The proc should downcast the context instance to the desired type
|
|
# and call a method on that context.
|
|
alias ContextMethod = Context ->
|
|
end
|