Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: DiscountTest.php
<?php class Stripe_DiscountTest extends StripeTestCase { public function testDeletion() { self::authorizeFromEnv(); $id = 'test-coupon-' . self::randomString(); $coupon = Stripe_Coupon::create( array( 'percent_off' => 25, 'duration' => 'repeating', 'duration_in_months' => 5, 'id' => $id, ) ); $customer = self::createTestCustomer(array('coupon' => $id)); $this->assertTrue(isset($customer->discount)); $this->assertTrue(isset($customer->discount->coupon)); $this->assertEqual($id, $customer->discount->coupon->id); $customer->deleteDiscount(); $this->assertFalse(isset($customer->discount)); $customer = Stripe_Customer::retrieve($customer->id); $this->assertFalse(isset($customer->discount)); } }