mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-11 18:54:33 +00:00
Improved test a bit
This commit is contained in:
@@ -23,19 +23,20 @@ class CartItemTest extends TestCase
|
||||
public function it_can_be_cast_to_an_array()
|
||||
{
|
||||
$cartItem = new CartItem(1, 'Some item', 10.00, ['size' => 'XL', 'color' => 'red']);
|
||||
$cartItem->setQuantity(2);
|
||||
|
||||
$this->assertEquals([
|
||||
'id' => 1,
|
||||
'name' => 'Some item',
|
||||
'price' => 10.00,
|
||||
'rowId' => '07d5da5550494c62daf9993cf954303f',
|
||||
'qty' => null,
|
||||
'qty' => 2,
|
||||
'options' => [
|
||||
'size' => 'XL',
|
||||
'color' => 'red'
|
||||
],
|
||||
'tax' => 0,
|
||||
'subtotal' => 0,
|
||||
'subtotal' => 20.00,
|
||||
], $cartItem->toArray());
|
||||
}
|
||||
|
||||
@@ -43,10 +44,11 @@ class CartItemTest extends TestCase
|
||||
public function it_can_be_cast_to_json()
|
||||
{
|
||||
$cartItem = new CartItem(1, 'Some item', 10.00, ['size' => 'XL', 'color' => 'red']);
|
||||
$cartItem->setQuantity(2);
|
||||
|
||||
$this->assertJson($cartItem->toJson());
|
||||
|
||||
$json = '{"rowId":"07d5da5550494c62daf9993cf954303f","id":1,"name":"Some item","qty":null,"price":10,"options":{"size":"XL","color":"red"},"tax":0,"subtotal":0}';
|
||||
$json = '{"rowId":"07d5da5550494c62daf9993cf954303f","id":1,"name":"Some item","qty":2,"price":10,"options":{"size":"XL","color":"red"},"tax":0,"subtotal":20}';
|
||||
|
||||
$this->assertEquals($json, $cartItem->toJson());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user