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