Exemplo n.º 1
0
def test_new_stock(inventory_fixture, ingredient_cost_fixture):
    system1 = System({}, {})

    assert (not ("white" in system1.Inventory))

    system1.New_Stock("white", 1)

    assert (system1.Ingredient_Costs["white"] == 1)