2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/includes/stripe/tests/TokenTest.php
Alexandre SPANGARO d0e27f67e7 Add plugins Stripe
2017-04-18 05:44:08 +02:00

14 lines
283 B
PHP

<?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');
}
}