1
0
mirror of https://gitlab.com/openlp/website.git synced 2024-07-26 18:28:20 +00:00
website/files/stripe/tests/BalanceTransactionTest.php

14 lines
252 B
PHP
Raw Normal View History

<?php
namespace Stripe;
class BalanceTransactionTest extends TestCase
{
public function testList()
{
self::authorizeFromEnv();
$d = BalanceTransaction::all();
$this->assertSame($d->url, '/v1/balance/history');
}
}