(temporarily rename unit folder)

This commit is contained in:
Adam Wathan
2017-05-02 15:42:22 -04:00
parent bed85c66c1
commit 1d8dfb6cf2
10 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Tests\Unit\Billing;
use Tests\TestCase;
use App\Billing\StripePaymentGateway;
/**
* @group integration
*/
class StripePaymentGatewayTest extends TestCase
{
use PaymentGatewayContractTests;
protected function getPaymentGateway()
{
return new StripePaymentGateway(config('services.stripe.secret'));
}
}