34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
|
|
class Stripe_PlanTest extends StripeTestCase
|
|
{
|
|
public function testDeletion()
|
|
{
|
|
authorizeFromEnv();
|
|
$p = Stripe_Plan::create(array('amount' => 2000,
|
|
'interval' => 'month',
|
|
'currency' => 'usd',
|
|
'name' => 'Plan',
|
|
'id' => 'gold-' . self::randomString()));
|
|
$p->delete();
|
|
$this->assertTrue($p->deleted);
|
|
}
|
|
|
|
public function testSave()
|
|
{
|
|
authorizeFromEnv();
|
|
$planId = 'gold-' . self::randomString();
|
|
$p = Stripe_Plan::create(array('amount' => 2000,
|
|
'interval' => 'month',
|
|
'currency' => 'usd',
|
|
'name' => 'Plan',
|
|
'id' => $planId));
|
|
$p->name = 'A new plan name';
|
|
$p->save();
|
|
$this->assertEqual($p->name, 'A new plan name');
|
|
|
|
$p2 = Stripe_Plan::retrieve($planId);
|
|
$this->assertEqual($p->name, $p2->name);
|
|
}
|
|
}
|