module Cucumber::Glue::Dsl

def BeforeAll(name: nil, &proc)

Use it for your final set-ups
Registers a proc that will run before the execution of the scenarios.
def BeforeAll(name: nil, &proc)
  Dsl.register_rb_hook('before_all', [], proc, name: name)
end