/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Upload File
HOME
<?php namespace Stripe; /** * @internal * @covers \Stripe\EphemeralKey */ final class EphemeralKeyTest extends \Stripe\TestCase { use TestHelper; 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']); static::assertInstanceOf(\Stripe\EphemeralKey::class, $resource); } public function testIsNotCreatableWithoutAnExplicitApiVersion() { $this->expectException(\InvalidArgumentException::class); $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(); static::assertInstanceOf(\Stripe\EphemeralKey::class, $resource); } }