mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class BalanceTransactionTest extends TestCase
|
|
{
|
|
public function testList()
|
|
{
|
|
self::authorizeFromEnv();
|
|
$d = BalanceTransaction::all();
|
|
$this->assertSame($d->url, '/v1/balance/history');
|
|
}
|
|
}
|