Skip to content

Commit

Permalink
Separated tests and placed transaction tests inside their own folder …
Browse files Browse the repository at this point in the history
…and namespace
  • Loading branch information
stevebauman committed May 6, 2015
1 parent 8978dc4 commit b130e50
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 21 deletions.
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionBackOrderTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionCancelledTest extends InventoryTransactionTest
{
Expand Down
@@ -1,10 +1,10 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Illuminate\Support\Facades\DB;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionCheckoutTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionHoldTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionOrderedTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionReleaseTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionRemoveTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionReservedTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionReturnedTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,9 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransaction;
use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;

class InventoryTransactionSoldTest extends InventoryTransactionTest
{
Expand Down
@@ -1,9 +1,10 @@
<?php

namespace Stevebauman\Inventory\Tests;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransactionHistory;
use Stevebauman\Inventory\Models\InventoryTransaction;
use Stevebauman\Inventory\Tests\InventoryStockTest;

class InventoryTransactionTest extends InventoryStockTest
{
Expand Down

0 comments on commit b130e50

Please sign in to comment.