mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-11 03:51:25 +01:00
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class ExchangeRateTest extends TestCase
|
|
{
|
|
public function testIsListable()
|
|
{
|
|
$this->stubRequest(
|
|
'get',
|
|
'/v1/exchange_rates',
|
|
[],
|
|
null,
|
|
false,
|
|
[
|
|
'object' => 'list',
|
|
'data' => [
|
|
[
|
|
'id' => 'eur',
|
|
'object' => 'exchange_rate',
|
|
'rates' => ['usd' => 1.18221],
|
|
],
|
|
[
|
|
'id' => 'usd',
|
|
'object' => 'exchange_rate',
|
|
'rates' => ['eur' => 0.845876],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$listRates = ExchangeRate::all();
|
|
$this->assertTrue(is_array($listRates->data));
|
|
$this->assertEquals('exchange_rate', $listRates->data[0]->object);
|
|
}
|
|
|
|
public function testIsRetrievable()
|
|
{
|
|
$this->stubRequest(
|
|
'get',
|
|
'/v1/exchange_rates/usd',
|
|
[],
|
|
null,
|
|
false,
|
|
[
|
|
'id' => 'usd',
|
|
'object' => 'exchange_rate',
|
|
'rates' => ['eur' => 0.845876],
|
|
]
|
|
);
|
|
$rates = ExchangeRate::retrieve("usd");
|
|
$this->assertEquals('exchange_rate', $rates->object);
|
|
}
|
|
}
|