File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/stripe/stripe-php/tests/Stripe/EphemeralKeyTest.php
Back
<?php namespace Stripe; class EphemeralKeyTest extends TestCase { public function testIsCreatable() { $this->expectsRequest( 'post', '/v1/ephemeral_keys', null, ["Stripe-Version: 2017-05-25"] ); $resource = EphemeralKey::create([ "customer" => "cus_123", ], ["stripe_version" => "2017-05-25"]); $this->assertInstanceOf("Stripe\\EphemeralKey", $resource); } /** * @expectedException \InvalidArgumentException */ public function testIsNotCreatableWithoutAnExplicitApiVersion() { $resource = EphemeralKey::create([ "customer" => "cus_123", ]); } public function testIsDeletable() { $key = EphemeralKey::create([ "customer" => "cus_123", ], ["stripe_version" => "2017-05-25"]); $this->expectsRequest( 'delete', '/v1/ephemeral_keys/' . $key->id ); $resource = $key->delete(); $this->assertInstanceOf("Stripe\\EphemeralKey", $resource); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings