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