Exemplo n.º 1
0
 def test_set_discount_int(self):
     transaction = PagSeguroTransaction('dummy_token', '*****@*****.**')
     with self.assertRaises(ValueError):
         transaction.set_discount(114)
Exemplo n.º 2
0
 def test_set_discount_int(self):
     transaction = PagSeguroTransaction('dummy_token', '*****@*****.**')
     with self.assertRaises(ValueError):
         transaction.set_discount(114)
Exemplo n.º 3
0
 def test_set_dicount(self):
     transaction = PagSeguroTransaction('dummy_token', '*****@*****.**')
     transaction.set_discount(1.14)
     self.assertIn('extraAmount', transaction.get_dados())
Exemplo n.º 4
0
 def test_set_dicount(self):
     transaction = PagSeguroTransaction('dummy_token', '*****@*****.**')
     transaction.set_discount(1.14)
     self.assertIn('extraAmount', transaction.get_dados())