mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
34 lines
1 KiB
Crystal
34 lines
1 KiB
Crystal
# Creates a new `Spectator::ExampleHooks` instance.
|
|
# All arguments are optional,
|
|
# only specify the sets of hooks that are needed.
|
|
# The hooks that aren't specified will be left empty.
|
|
def new_hooks(
|
|
before_all = [] of ->,
|
|
before_each = [] of ->,
|
|
after_all = [] of ->,
|
|
after_each = [] of ->,
|
|
around_each = [] of Proc(Nil) ->
|
|
)
|
|
Spectator::ExampleHooks.new(before_all, before_each,
|
|
after_all, after_each, around_each)
|
|
end
|
|
|
|
# Creates a new `Spectator::ExampleHooks` instance.
|
|
# All arguments are optional,
|
|
# only specify a hook for the types that are needed.
|
|
# The hooks that aren't specified will be left empty.
|
|
def new_hooks(
|
|
before_all : Proc(Nil)? = nil,
|
|
before_each : Proc(Nil)? = nil,
|
|
after_all : Proc(Nil)? = nil,
|
|
after_each : Proc(Nil)? = nil,
|
|
around_each : Proc(Proc(Nil), Nil)? = nil
|
|
)
|
|
new_hooks(
|
|
before_all ? [before_all] : [] of ->,
|
|
before_each ? [before_each] : [] of ->,
|
|
after_all ? [after_all] : [] of ->,
|
|
after_each ? [after_each] : [] of ->,
|
|
around_each ? [around_each] : [] of Proc(Nil) ->
|
|
)
|
|
end
|