1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

validation code

This commit is contained in:
Ivan Chaplygin 2023-02-28 10:32:36 +03:00
parent 086dea0285
commit 0224b3bc13
2 changed files with 3 additions and 3 deletions

View file

@ -36,7 +36,7 @@ class DataCartRetailCrm
'externalId' => '1',
'name' => 'test product',
'properties' => [
'prop1' => 'prop'
'prop1' => 'prop',
],
'unit' => [
'code' => 'test code',
@ -99,4 +99,4 @@ class DataCartRetailCrm
];
}
}
}

View file

@ -56,8 +56,8 @@ class WC_Retailcrm_Cart_Test extends WC_Retailcrm_Test_Case_Helper
$response = $this->apiClientMock->cartGet(1, 'test-site');
$this->assertNotEmpty($response->__get('cart'));
$this->assertTrue($response->__get('success'));
}
public function testSetCart()
{
$response = $this->apiClientMock->cartSet(DataCartRetailCrm::dataSetCart(), 'test-site');