Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: SubscriptionTest.php
<?php class Stripe_SubscriptionTest extends StripeTestCase { public function testCreateUpdateCancel() { $planID = 'gold-' . self::randomString(); self::retrieveOrCreatePlan($planID); $customer = self::createTestCustomer(); $sub = $customer->subscriptions->create(array('plan' => $planID)); $this->assertEqual($sub->status, 'active'); $this->assertEqual($sub->plan->id, $planID); $sub->quantity = 2; $sub->save(); $sub = $customer->subscriptions->retrieve($sub->id); $this->assertEqual($sub->status, 'active'); $this->assertEqual($sub->plan->id, $planID); $this->assertEqual($sub->quantity, 2); $sub->cancel(array('at_period_end' => true)); $sub = $customer->subscriptions->retrieve($sub->id); $this->assertEqual($sub->status, 'active'); // @codingStandardsIgnoreStart $this->assertTrue($sub->cancel_at_period_end); // @codingStandardsIgnoreEnd } public function testDeleteDiscount() { $planID = 'gold-' . self::randomString(); self::retrieveOrCreatePlan($planID); $couponID = '25off-' . self::randomString(); self::retrieveOrCreateCoupon($couponID); $customer = self::createTestCustomer(); $sub = $customer->subscriptions->create( array( 'plan' => $planID, 'coupon' => $couponID ) ); $this->assertEqual($sub->status, 'active'); $this->assertEqual($sub->plan->id, $planID); $this->assertEqual($sub->discount->coupon->id, $couponID); $sub->deleteDiscount(); $sub = $customer->subscriptions->retrieve($sub->id); $this->assertNull($sub->discount); } }