Ejemplo n.º 1
0
 def test_refund_post(self):
     client = mock.Mock()
     bill = Bill(fixtures.bill_json, client)
     bill.refund()
     refund_url = "/bills/{0}/refund".format(fixtures.bill_json["id"])
     client.api_post.assert_called_with(refund_url)
Ejemplo n.º 2
0
 def test_cancel_put(self):
     client = mock.Mock()
     bill = Bill(fixtures.bill_json, client)
     bill.cancel()
     cancel_url = "/bills/{0}/cancel".format(fixtures.bill_json["id"])
     client.api_put.assert_called_with(cancel_url)