Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
geshan committed Jul 25, 2015
1 parent 9a787bf commit 418b918
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Http/routes.php
Expand Up @@ -17,4 +17,4 @@

Route::get('/place/{paymentMethod}', [
'as' => 'order-place', 'uses' => 'CheckoutController@placeOrder'
]);
]);
10 changes: 7 additions & 3 deletions tests/Services/CheckoutTest.php
Expand Up @@ -5,6 +5,12 @@
use App\Services\Checkout;
use Test\TestCase;

/**
* Tests for checkout service
*
* Class CheckoutTest
* @package Test\Services
*/
class CheckoutTest extends TestCase
{
/**
Expand Down Expand Up @@ -50,6 +56,4 @@ public function testCalculateTotal($paymentMethod, $expectedTotal)
sprintf('Testing total calculation for %s.', $paymentMethod)
);
}


}
}

0 comments on commit 418b918

Please sign in to comment.