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