mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-11 03:51:25 +01:00
22 lines
591 B
PHP
22 lines
591 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class ApplicationFeeRefundTest extends TestCase
|
|
{
|
|
const TEST_RESOURCE_ID = 'fr_123';
|
|
const TEST_FEE_ID = 'fee_123';
|
|
|
|
public function testIsSaveable()
|
|
{
|
|
$resource = ApplicationFee::retrieveRefund(self::TEST_FEE_ID, self::TEST_RESOURCE_ID);
|
|
$resource->metadata["key"] = "value";
|
|
$this->expectsRequest(
|
|
'post',
|
|
'/v1/application_fees/' . $resource->fee . '/refunds/' . $resource->id
|
|
);
|
|
$resource->save();
|
|
$this->assertInstanceOf("Stripe\\ApplicationFeeRefund", $resource);
|
|
}
|
|
}
|