cucumber.api.jruby.en.rb Maven / Gradle / Ivy
The newest version!
module Cucumber
module Runtime
module JRuby
module Dsl
def Given(regexp, &proc)
register_stepdef(regexp, proc)
end
def When(regexp, &proc)
register_stepdef(regexp, proc)
end
def Then(regexp, &proc)
register_stepdef(regexp, proc)
end
def And(regexp, &proc)
register_stepdef(regexp, proc)
end
def But(regexp, &proc)
register_stepdef(regexp, proc)
end
end
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy