Exemplo n.º 1
0
def basket():
    return CucumberBasket(initial_count=2)
Exemplo n.º 2
0
def step_impl(context):
    context.basket = CucumberBasket()
Exemplo n.º 3
0
def step_impl(context):
    context.basket = CucumberBasket(initial_count=10)
Exemplo n.º 4
0
def basket(start):
    # usada com fixture para os outros passos
    return CucumberBasket(initial_count=start)