mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 13:02:50 +00:00
16 lines
350 B
PHP
16 lines
350 B
PHP
|
<?php
|
||
|
|
||
|
namespace Stripe;
|
||
|
|
||
|
class BalanceTest extends TestCase
|
||
|
{
|
||
|
public function testRetrieve()
|
||
|
{
|
||
|
self::authorizeFromEnv();
|
||
|
$d = Balance::retrieve();
|
||
|
$this->assertSame($d->object, "balance");
|
||
|
$this->assertTrue(Util\Util::isList($d->available));
|
||
|
$this->assertTrue(Util\Util::isList($d->pending));
|
||
|
}
|
||
|
}
|