%PDF- %PDF-
Direktori : /home/eirtvhdf/logodowntown.com/root_stripe/stripe/tests/Stripe/ |
Current File : /home/eirtvhdf/logodowntown.com/root_stripe/stripe/tests/Stripe/ApplicationFeeRefundTest.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); } }