mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
19 lines
370 B
PHP
19 lines
370 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class ApplicationFeeRefundTest extends TestCase
|
|
{
|
|
public function testUrls()
|
|
{
|
|
$refund = new ApplicationFeeRefund();
|
|
$refund->id = 'refund_id';
|
|
$refund->fee = 'fee_id';
|
|
|
|
$this->assertSame(
|
|
$refund->instanceUrl(),
|
|
'/v1/application_fees/fee_id/refunds/refund_id'
|
|
);
|
|
}
|
|
}
|