mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Move example hooks helper methods to their own file
This commit is contained in:
parent
fad3eba11f
commit
c68cd7e16a
2 changed files with 34 additions and 27 deletions
|
@ -1,32 +1,5 @@
|
|||
require "./spec_helper"
|
||||
|
||||
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
|
||||
|
||||
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
|
||||
|
||||
describe Spectator::ExampleHooks do
|
||||
{% for hook in %i[before_all before_each after_all after_each] %}
|
||||
describe "#run_{{hook.id}}" do
|
||||
|
|
34
spec/helpers/example_hooks_helper.cr
Normal file
34
spec/helpers/example_hooks_helper.cr
Normal file
|
@ -0,0 +1,34 @@
|
|||
# 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
|
Loading…
Reference in a new issue