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

14 lines
283 B
PHP
Raw Normal View History

<?php
namespace Stripe;
class TokenTest extends TestCase
{
public function testUrls()
{
$this->assertSame(Token::classUrl(), '/v1/tokens');
$token = new Token('abcd/efgh');
$this->assertSame($token->instanceUrl(), '/v1/tokens/abcd%2Fefgh');
}
}