You appear to be a bot. Output may be restricted
Description
Usage
Tests_Payment_Class::test_modify_amount();
Parameters
Returns
void
Source
File name: easy-digital-downloads/tests/tests-payment-class.php
Lines:
1 to 15 of 15
public function test_modify_amount() { $payment = new EDD_Payment( $this->_payment_id ); $item_price = isset( $download['item_price'] ) ? $download['item_price'] : 0; $args = array( 'item_price' => '1,001.95' ); $payment->modify_cart_item( 0, $args ); $payment->save(); $payment = new EDD_Payment( $this->_payment_id ); $this->assertEquals( 1001.95, $payment->cart_details[0]['price'] ); }