Exemplo n.º 1
0
    def test_theNumberOfItemsShouldBeEmpty_whenWeAddAnItemAndThenRemoveIt(
            self):
        cart = Cart()
        cart.add_item('iPhone')

        cart.remove_item('iPhone')

        self.assertTrue(cart.is_empty())
Exemplo n.º 2
0
 def test_theShoppingCartShouldBeEmpty_whenWeCreateANewCart(self):
     cart = Cart()
     self.assertTrue(cart.is_empty())
Exemplo n.º 3
0
    def test_theShoppingCartShouldNotBeEmpty_whenWeAddAnItemToTheCart(self):
        cart = Cart()  # Given

        cart.add_item('iPhone')  # When

        self.assertFalse(cart.is_empty())  # Then