From 03f47070967d30425475d817c98a5551f1da0918 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Sun, 18 Nov 2018 17:34:12 +0800 Subject: [PATCH] Restructur tests/Unit directory --- tests/Unit/{Integration => Models}/ProductTest.php | 2 +- tests/Unit/{Integration => Models}/TransactionTest.php | 2 +- tests/Unit/{Integration => Models}/UnitTest.php | 2 +- tests/Unit/{Integration => }/TransactionDraftTest.php | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) rename tests/Unit/{Integration => Models}/ProductTest.php (97%) rename tests/Unit/{Integration => Models}/TransactionTest.php (97%) rename tests/Unit/{Integration => Models}/UnitTest.php (94%) rename tests/Unit/{Integration => }/TransactionDraftTest.php (98%) diff --git a/tests/Unit/Integration/ProductTest.php b/tests/Unit/Models/ProductTest.php similarity index 97% rename from tests/Unit/Integration/ProductTest.php rename to tests/Unit/Models/ProductTest.php index 1fdee77..51596ff 100644 --- a/tests/Unit/Integration/ProductTest.php +++ b/tests/Unit/Models/ProductTest.php @@ -1,6 +1,6 @@ 'Nafies', 'phone' => '081234567890', ], - 'payment' => 10000, - 'notes' => 'Catatan', + 'payment' => 10000, + 'notes' => 'Catatan', ]; $cart->updateDraftAttributes($draft->draftKey, $draftAttributes); @@ -206,8 +206,8 @@ class TransactionDraftTest extends TestCase 'name' => 'Nafies', 'phone' => '081234567890', ], - 'payment' => 10000, - 'notes' => 'Catatan', + 'payment' => 10000, + 'notes' => 'Catatan', ]; $cart->updateDraftAttributes($draft->draftKey, $draftAttributes);