当前位置: 首页>>代码示例>>Python>>正文


Python Cart.reset方法代码示例

本文整理汇总了Python中cart.Cart.reset方法的典型用法代码示例。如果您正苦于以下问题:Python Cart.reset方法的具体用法?Python Cart.reset怎么用?Python Cart.reset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cart.Cart的用法示例。


在下文中一共展示了Cart.reset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: TestCart

# 需要导入模块: from cart import Cart [as 别名]
# 或者: from cart.Cart import reset [as 别名]
class TestCart(unittest.TestCase):

    def setUp(self):
        self.session = {}
        self.product_one = NonCallableMock(product_id=1, price=1.99)
        self.product_two = NonCallableMock(product_id=2, price=2.49)
        self.cart = Cart(self.session)

    def test_can_add_product(self):
        self.cart.add_product(self.product_one, 10)
        self.assertEqual(
            self.cart.get_cart_item(self.product_one).quantity, 10)

    def test_cannot_add_product_twice(self):
        self.cart.add_product(self.product_one, 13)
        self.assertRaises(
            CartError, lambda: self.cart.add_product(self.product_one, 10))

    def test_remove_product(self):
        self.cart.add_product(self.product_one, 10)
        self.cart.remove_product(self.product_one)
        self.assertEqual(self.cart.num_items, 0)
        self.assertRaises(
            CartError, lambda: self.cart.get_cart_item(self.product_one))

    def test_cannot_remove_product_not_in_cart(self):
        self.assertRaises(
            CartError, lambda: self.cart.remove_product(self.product_one))

    def test_can_calculate_quantity_of_cart(self):
        self.cart.add_product(self.product_one, 10)
        self.assertEqual(self.cart.num_items, 10)
        self.cart.add_product(self.product_two, 15)
        self.assertEqual(self.cart.num_items, 25)

    def test_quantity_of_empty_cart_is_zero(self):
        self.assertEqual(self.cart.num_items, 0)

    def test_can_calculate_subtotal_of_cart(self):
        self.cart.add_product(self.product_one, 10)
        self.assertEqual(self.cart.sub_total, 19.9)
        self.cart.add_product(self.product_two, 15)
        self.assertEqual(self.cart.sub_total, 57.25)

    def test_subtotal_of_empty_cart_is_zero(self):
        self.assertEqual(self.cart.sub_total, 0)

    def test_can_update_quanity(self):
        self.cart.add_product(self.product_one, 10)
        self.cart.update_quantity(self.product_one, 15)
        self.assertEqual(
            self.cart.get_cart_item(self.product_one).quantity, 15)

    def test_cannot_update_quantity_if_not_in_cart(self):
        self.assertRaises(CartError, lambda:
                          self.cart.update_quantity(self.product_one, 10))

    def test_can_save_cart(self):
        self.cart.add_product(self.product_one)
        self.cart.save(self.session)
        self.new_cart = Cart(self.session)
        self.assertEqual(self.cart.cart_items, self.new_cart.cart_items)

    def test_can_reset_cart(self):
        self.cart.add_product(self.product_one, 10)
        self.cart.reset()
        self.assertEqual(self.cart.cart_items, [])
开发者ID:hnejadi,项目名称:shopping_cart,代码行数:69,代码来源:test.py


注:本文中的cart.Cart.reset方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。