cucumber.api.jruby.pt.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 Quando(regexp, &proc)
register_stepdef(regexp, proc)
end
def Então(regexp, &proc)
register_stepdef(regexp, proc)
end
def Entao(regexp, &proc)
register_stepdef(regexp, proc)
end
def E(regexp, &proc)
register_stepdef(regexp, proc)
end
def Mas(regexp, &proc)
register_stepdef(regexp, proc)
end
end
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy