def testGetTaxForCustomer(self):
        """
        """
        pp = IPaymentPrices(self.shop)
        tax = pp.getTaxForCustomer()

        self.assertEqual("%.2f" % tax, "15.97")
예제 #2
0
    def testGetTaxForCustomer(self):
        """
        """
        pp = IPaymentPrices(self.shop)
        tax = pp.getTaxForCustomer()

        self.assertEqual("%.2f" % tax, "15.97")