29 lines
768 B
PHP
29 lines
768 B
PHP
<?php
|
|
|
|
class Stripe_UtilTest extends StripeTestCase
|
|
{
|
|
public function testIsList()
|
|
{
|
|
$list = array(5, 'nstaoush', array());
|
|
$this->assertTrue(Stripe_Util::isList($list));
|
|
|
|
$notlist = array(5, 'nstaoush', array(), 'bar' => 'baz');
|
|
$this->assertFalse(Stripe_Util::isList($notlist));
|
|
}
|
|
|
|
public function testThatPHPHasValueSemanticsForArrays()
|
|
{
|
|
$original = array('php-arrays' => 'value-semantics');
|
|
$derived = $original;
|
|
$derived['php-arrays'] = 'reference-semantics';
|
|
|
|
$this->assertEqual('value-semantics', $original['php-arrays']);
|
|
}
|
|
|
|
public function testConvertStripeObjectToArrayIncludesId()
|
|
{
|
|
$customer = self::createTestCustomer();
|
|
$this->assertTrue(array_key_exists("id", $customer->__toArray(true)));
|
|
}
|
|
}
|