mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
23 lines
455 B
PHP
23 lines
455 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class RateLimitErrorTest extends TestCase
|
|
{
|
|
private function rateLimitErrorResponse()
|
|
{
|
|
return array(
|
|
'error' => array(),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @expectedException Stripe\Error\RateLimit
|
|
*/
|
|
public function testRateLimit()
|
|
{
|
|
$this->mockRequest('GET', '/v1/accounts/acct_DEF', array(), $this->rateLimitErrorResponse(), 429);
|
|
Account::retrieve('acct_DEF');
|
|
}
|
|
}
|