cucumber.api.jruby.es.rb Maven / Gradle / Ivy
The newest version!
module Cucumber
module Runtime
module JRuby
module Dsl
def Dado(regexp, &proc)
register_stepdef(regexp, proc)
end
def Dada(regexp, &proc)
register_stepdef(regexp, proc)
end
def Dados(regexp, &proc)
register_stepdef(regexp, proc)
end
def Dadas(regexp, &proc)
register_stepdef(regexp, proc)
end
def Cuando(regexp, &proc)
register_stepdef(regexp, proc)
end
def Entonces(regexp, &proc)
register_stepdef(regexp, proc)
end
def Y(regexp, &proc)
register_stepdef(regexp, proc)
end
def E(regexp, &proc)
register_stepdef(regexp, proc)
end
def Pero(regexp, &proc)
register_stepdef(regexp, proc)
end
end
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy