Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: PlanTest.php
<?php class Stripe_PlanTest extends StripeTestCase { public function testDeletion() { self::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 testFalseyId() { try { $retrievedPlan = Stripe_Plan::retrieve('0'); } catch (Stripe_InvalidRequestError $e) { // Can either succeed or 404, all other errors are bad if ($e->httpStatus !== 404) { $this->fail(); } } } public function testSave() { self::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'); $stripePlan = Stripe_Plan::retrieve($planID); $this->assertEqual($p->name, $stripePlan->name); } }