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